pub struct AddTaskForSectionRequest {
pub data: SectionTaskInsertRequest,
pub opt_pretty: Option<bool>,
pub section_gid: String,
}
Expand description
You should use this struct via AsanaClient::add_task_for_section
.
On request success, this will return a AddTaskForSectionResponse
.
Fields§
§data: SectionTaskInsertRequest
§opt_pretty: Option<bool>
§section_gid: String
Trait Implementations§
Source§impl Clone for AddTaskForSectionRequest
impl Clone for AddTaskForSectionRequest
Source§fn clone(&self) -> AddTaskForSectionRequest
fn clone(&self) -> AddTaskForSectionRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 AddTaskForSectionRequest
impl Debug for AddTaskForSectionRequest
Source§impl<'de> Deserialize<'de> for AddTaskForSectionRequest
impl<'de> Deserialize<'de> for AddTaskForSectionRequest
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
Auto Trait Implementations§
impl Freeze for AddTaskForSectionRequest
impl RefUnwindSafe for AddTaskForSectionRequest
impl Send for AddTaskForSectionRequest
impl Sync for AddTaskForSectionRequest
impl Unpin for AddTaskForSectionRequest
impl UnwindSafe for AddTaskForSectionRequest
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