pub struct ProjectResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub name: Option<String>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
pub read: Option<bool>,
pub write: Option<bool>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§organization_id: Option<Uuid>
§name: Option<String>
§creation_date: Option<String>
§revision_date: Option<String>
§read: Option<bool>
§write: Option<bool>
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 for ProjectResponseModel
impl PartialEq for ProjectResponseModel
Source§impl Serialize for ProjectResponseModel
impl Serialize for ProjectResponseModel
impl StructuralPartialEq for ProjectResponseModel
Auto Trait Implementations§
impl Freeze for ProjectResponseModel
impl RefUnwindSafe for ProjectResponseModel
impl Send for ProjectResponseModel
impl Sync for ProjectResponseModel
impl Unpin for ProjectResponseModel
impl UnwindSafe for ProjectResponseModel
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