pub struct TaskAddProjectRequest {
pub insert_after: Option<String>,
pub insert_before: Option<String>,
pub project: String,
pub section: Option<String>,
}Fields§
§insert_after: Option<String>A task in the project to insert the task after, or null to insert at the beginning of the list.
insert_before: Option<String>A task in the project to insert the task before, or null to insert at the end of the list.
project: StringThe project to add the task to.
section: Option<String>A section in the project to insert the task into. The task will be inserted at the bottom of the section.
Trait Implementations§
Source§impl Clone for TaskAddProjectRequest
impl Clone for TaskAddProjectRequest
Source§fn clone(&self) -> TaskAddProjectRequest
fn clone(&self) -> TaskAddProjectRequest
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 TaskAddProjectRequest
impl Debug for TaskAddProjectRequest
Source§impl Default for TaskAddProjectRequest
impl Default for TaskAddProjectRequest
Source§fn default() -> TaskAddProjectRequest
fn default() -> TaskAddProjectRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskAddProjectRequest
impl<'de> Deserialize<'de> for TaskAddProjectRequest
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 TaskAddProjectRequest
impl Display for TaskAddProjectRequest
Auto Trait Implementations§
impl Freeze for TaskAddProjectRequest
impl RefUnwindSafe for TaskAddProjectRequest
impl Send for TaskAddProjectRequest
impl Sync for TaskAddProjectRequest
impl Unpin for TaskAddProjectRequest
impl UnsafeUnpin for TaskAddProjectRequest
impl UnwindSafe for TaskAddProjectRequest
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