pub struct SecretUpdateRequestModel {
pub key: String,
pub value: String,
pub note: String,
pub project_ids: Option<Vec<Uuid>>,
}
Fields§
§key: String
§value: String
§note: String
§project_ids: Option<Vec<Uuid>>
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<'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§fn eq(&self, other: &SecretUpdateRequestModel) -> bool
fn eq(&self, other: &SecretUpdateRequestModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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