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