pub struct SecretCreateRequestModel {
pub key: String,
pub value: String,
pub note: String,
pub project_id: Option<String>,
}Fields§
§key: String§value: String§note: String§project_id: Option<String>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<SecretCreateRequestModel> for SecretCreateRequestModel
impl PartialEq<SecretCreateRequestModel> 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 ==.