pub struct TaskResponseAllOf {
    pub assignee: Option<Box<UserCompact>>,
    pub custom_fields: Option<Vec<CustomFieldResponse>>,
    pub followers: Option<Vec<UserCompact>>,
    pub parent: Option<Box<TaskCompact>>,
    pub projects: Option<Vec<ProjectCompact>>,
    pub tags: Option<Vec<TagCompact>>,
    pub workspace: Option<Box<WorkspaceCompact>>,
    pub permalink_url: Option<String>,
}

Fields

assignee: Option<Box<UserCompact>>custom_fields: Option<Vec<CustomFieldResponse>>

Array of custom field values applied to the task. These represent the custom field values recorded on this project for a particular custom field. For example, these custom field values will contain an enum_value property for custom fields of type enum, a text_value property for custom fields of type text, and so on. Please note that the gid returned on each custom field value is identical to the gid of the custom field, which allows referencing the custom field metadata through the /custom_fields/custom_field-gid endpoint.

followers: Option<Vec<UserCompact>>

Array of users following this task.

parent: Option<Box<TaskCompact>>projects: Option<Vec<ProjectCompact>>

Create-only. Array of projects this task is associated with. At task creation time, this array can be used to add the task to many projects at once. After task creation, these associations can be modified using the addProject and removeProject endpoints.

tags: Option<Vec<TagCompact>>

Array of tags associated with this task. In order to change tags on an existing task use addTag and removeTag.

workspace: Option<Box<WorkspaceCompact>>permalink_url: Option<String>

A url that points directly to the object within Asana.

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more