pub struct Section {
pub gid: String,
pub name: String,
pub resource_type: Option<String>,
pub created_at: Option<String>,
pub project: Option<SectionProjectReference>,
pub projects: Vec<SectionProjectReference>,
}Expand description
Full section payload returned from Asana.
Fields§
§gid: StringSection identifier.
name: StringDisplay name (the text displayed as the section header).
resource_type: Option<String>Resource type marker.
created_at: Option<String>Creation timestamp.
project: Option<SectionProjectReference>Parent project reference.
projects: Vec<SectionProjectReference>Deprecated field - use project instead.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Section
impl<'de> Deserialize<'de> for Section
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
impl Eq for Section
impl StructuralPartialEq for Section
Auto Trait Implementations§
impl Freeze for Section
impl RefUnwindSafe for Section
impl Send for Section
impl Sync for Section
impl Unpin for Section
impl UnsafeUnpin for Section
impl UnwindSafe for Section
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