pub struct SecretCreateRequestModel {
pub key: String,
pub value: String,
pub note: String,
pub project_ids: Option<Vec<Uuid>>,
pub access_policies_requests: Option<Box<SecretAccessPoliciesRequestsModel>>,
}
Fields§
§key: String
§value: String
§note: String
§project_ids: Option<Vec<Uuid>>
§access_policies_requests: Option<Box<SecretAccessPoliciesRequestsModel>>
Implementations§
Trait Implementations§
Source§impl Clone for SecretCreateRequestModel
impl Clone for SecretCreateRequestModel
Source§fn clone(&self) -> SecretCreateRequestModel
fn clone(&self) -> SecretCreateRequestModel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SecretCreateRequestModel
impl Debug for SecretCreateRequestModel
Source§impl Default for SecretCreateRequestModel
impl Default for SecretCreateRequestModel
Source§fn default() -> SecretCreateRequestModel
fn default() -> SecretCreateRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretCreateRequestModel
impl<'de> Deserialize<'de> for SecretCreateRequestModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SecretCreateRequestModel
impl PartialEq for SecretCreateRequestModel
Source§impl Serialize for SecretCreateRequestModel
impl Serialize for SecretCreateRequestModel
impl StructuralPartialEq for SecretCreateRequestModel
Auto Trait Implementations§
impl Freeze for SecretCreateRequestModel
impl RefUnwindSafe for SecretCreateRequestModel
impl Send for SecretCreateRequestModel
impl Sync for SecretCreateRequestModel
impl Unpin for SecretCreateRequestModel
impl UnwindSafe for SecretCreateRequestModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more