pub struct ProjectRelation {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub type: Option<String>,
pub anchor_type: Option<String>,
pub related_anchor_type: Option<String>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§type: Option<String>§anchor_type: Option<String>Trait Implementations§
Source§impl Clone for ProjectRelation
impl Clone for ProjectRelation
Source§fn clone(&self) -> ProjectRelation
fn clone(&self) -> ProjectRelation
Returns a duplicate 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 ProjectRelation
impl Debug for ProjectRelation
Source§impl Default for ProjectRelation
impl Default for ProjectRelation
Source§fn default() -> ProjectRelation
fn default() -> ProjectRelation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectRelationwhere
ProjectRelation: Default,
impl<'de> Deserialize<'de> for ProjectRelationwhere
ProjectRelation: Default,
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
Auto Trait Implementations§
impl Freeze for ProjectRelation
impl RefUnwindSafe for ProjectRelation
impl Send for ProjectRelation
impl Sync for ProjectRelation
impl Unpin for ProjectRelation
impl UnwindSafe for ProjectRelation
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