pub struct SectionCompact {
pub asana_resource: AsanaResource,
pub name: Option<String>,
}Fields§
§asana_resource: AsanaResourceA generic Asana Resource, containing a globally unique identifier.
name: Option<String>The name of the section (i.e. the text displayed as the section header).
Trait Implementations§
Source§impl Clone for SectionCompact
impl Clone for SectionCompact
Source§fn clone(&self) -> SectionCompact
fn clone(&self) -> SectionCompact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SectionCompact
impl Debug for SectionCompact
Source§impl Default for SectionCompact
impl Default for SectionCompact
Source§fn default() -> SectionCompact
fn default() -> SectionCompact
Returns the “default value” for a type. Read more
Source§impl Deref for SectionCompact
impl Deref for SectionCompact
Source§impl DerefMut for SectionCompact
impl DerefMut for SectionCompact
Source§impl<'de> Deserialize<'de> for SectionCompact
impl<'de> Deserialize<'de> for SectionCompact
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 Display for SectionCompact
impl Display for SectionCompact
Auto Trait Implementations§
impl Freeze for SectionCompact
impl RefUnwindSafe for SectionCompact
impl Send for SectionCompact
impl Sync for SectionCompact
impl Unpin for SectionCompact
impl UnsafeUnpin for SectionCompact
impl UnwindSafe for SectionCompact
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