pub struct UserTaskListCompact {
pub asana_resource: AsanaResource,
pub name: Option<String>,
pub owner: Option<UserCompact>,
pub workspace: Option<WorkspaceCompact>,
}Fields§
§asana_resource: AsanaResourceA generic Asana Resource, containing a globally unique identifier.
name: Option<String>The name of the user task list.
owner: Option<UserCompact>The owner of the user task list, i.e. the person whose My Tasks is represented by this resource.
workspace: Option<WorkspaceCompact>The workspace in which the user task list is located.
Trait Implementations§
Source§impl Clone for UserTaskListCompact
impl Clone for UserTaskListCompact
Source§fn clone(&self) -> UserTaskListCompact
fn clone(&self) -> UserTaskListCompact
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 UserTaskListCompact
impl Debug for UserTaskListCompact
Source§impl Default for UserTaskListCompact
impl Default for UserTaskListCompact
Source§fn default() -> UserTaskListCompact
fn default() -> UserTaskListCompact
Returns the “default value” for a type. Read more
Source§impl Deref for UserTaskListCompact
impl Deref for UserTaskListCompact
Source§impl DerefMut for UserTaskListCompact
impl DerefMut for UserTaskListCompact
Source§impl<'de> Deserialize<'de> for UserTaskListCompact
impl<'de> Deserialize<'de> for UserTaskListCompact
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 UserTaskListCompact
impl Display for UserTaskListCompact
Auto Trait Implementations§
impl Freeze for UserTaskListCompact
impl RefUnwindSafe for UserTaskListCompact
impl Send for UserTaskListCompact
impl Sync for UserTaskListCompact
impl Unpin for UserTaskListCompact
impl UnsafeUnpin for UserTaskListCompact
impl UnwindSafe for UserTaskListCompact
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