pub struct SecretCreateRequestModel {
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 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<'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§fn eq(&self, other: &SecretCreateRequestModel) -> bool
fn eq(&self, other: &SecretCreateRequestModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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