pub struct SecretUpdateRequestModel {
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 SecretUpdateRequestModel
impl Clone for SecretUpdateRequestModel
Source§fn clone(&self) -> SecretUpdateRequestModel
fn clone(&self) -> SecretUpdateRequestModel
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 SecretUpdateRequestModel
impl Debug for SecretUpdateRequestModel
Source§impl Default for SecretUpdateRequestModel
impl Default for SecretUpdateRequestModel
Source§fn default() -> SecretUpdateRequestModel
fn default() -> SecretUpdateRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretUpdateRequestModel
impl<'de> Deserialize<'de> for SecretUpdateRequestModel
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 SecretUpdateRequestModel
impl PartialEq for SecretUpdateRequestModel
Source§impl Serialize for SecretUpdateRequestModel
impl Serialize for SecretUpdateRequestModel
impl StructuralPartialEq for SecretUpdateRequestModel
Auto Trait Implementations§
impl Freeze for SecretUpdateRequestModel
impl RefUnwindSafe for SecretUpdateRequestModel
impl Send for SecretUpdateRequestModel
impl Sync for SecretUpdateRequestModel
impl Unpin for SecretUpdateRequestModel
impl UnwindSafe for SecretUpdateRequestModel
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