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