pub struct SecretResponseModel {
pub object: Option<String>,
pub id: Option<String>,
pub organization_id: Option<String>,
pub key: Option<String>,
pub value: Option<String>,
pub note: Option<String>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
pub projects: Option<Vec<InnerProject>>,
}
Fields§
§object: Option<String>
§id: Option<String>
§organization_id: Option<String>
§key: Option<String>
§value: Option<String>
§note: Option<String>
§creation_date: Option<String>
§revision_date: Option<String>
§projects: Option<Vec<InnerProject>>
Implementations§
source§impl SecretResponseModel
impl SecretResponseModel
pub fn new() -> SecretResponseModel
Trait Implementations§
source§impl Clone for SecretResponseModel
impl Clone for SecretResponseModel
source§fn clone(&self) -> SecretResponseModel
fn clone(&self) -> SecretResponseModel
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 SecretResponseModel
impl Debug for SecretResponseModel
source§impl Default for SecretResponseModel
impl Default for SecretResponseModel
source§fn default() -> SecretResponseModel
fn default() -> SecretResponseModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SecretResponseModel
impl<'de> Deserialize<'de> for SecretResponseModel
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<SecretResponseModel> for SecretResponseModel
impl PartialEq<SecretResponseModel> for SecretResponseModel
source§fn eq(&self, other: &SecretResponseModel) -> bool
fn eq(&self, other: &SecretResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.