pub struct StatusUpdateCompact {
pub asana_resource: AsanaResource,
pub resource_subtype: Option<String>,
pub title: Option<String>,
}Fields§
§asana_resource: AsanaResourceA generic Asana Resource, containing a globally unique identifier.
resource_subtype: Option<String>The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning.
The resource_subtypes for status objects represent the type of their parent.
title: Option<String>The title of the status update.
Trait Implementations§
Source§impl Clone for StatusUpdateCompact
impl Clone for StatusUpdateCompact
Source§fn clone(&self) -> StatusUpdateCompact
fn clone(&self) -> StatusUpdateCompact
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 StatusUpdateCompact
impl Debug for StatusUpdateCompact
Source§impl Default for StatusUpdateCompact
impl Default for StatusUpdateCompact
Source§fn default() -> StatusUpdateCompact
fn default() -> StatusUpdateCompact
Returns the “default value” for a type. Read more
Source§impl Deref for StatusUpdateCompact
impl Deref for StatusUpdateCompact
Source§impl DerefMut for StatusUpdateCompact
impl DerefMut for StatusUpdateCompact
Source§impl<'de> Deserialize<'de> for StatusUpdateCompact
impl<'de> Deserialize<'de> for StatusUpdateCompact
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 StatusUpdateCompact
impl Display for StatusUpdateCompact
Auto Trait Implementations§
impl Freeze for StatusUpdateCompact
impl RefUnwindSafe for StatusUpdateCompact
impl Send for StatusUpdateCompact
impl Sync for StatusUpdateCompact
impl Unpin for StatusUpdateCompact
impl UnsafeUnpin for StatusUpdateCompact
impl UnwindSafe for StatusUpdateCompact
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