pub struct TaskUpdate {
pub subject: Option<String>,
pub description: Option<String>,
pub active_form: Option<String>,
pub status: Option<TaskStatus>,
pub owner: Option<String>,
pub add_blocks: Option<Vec<String>>,
pub add_blocked_by: Option<Vec<String>>,
pub metadata: Option<Value>,
}Expand description
Partial update for an existing task.
Fields§
§subject: Option<String>§description: Option<String>§active_form: Option<String>§status: Option<TaskStatus>§owner: Option<String>§add_blocks: Option<Vec<String>>Task IDs to add to blocks.
add_blocked_by: Option<Vec<String>>Task IDs to add to blocked_by.
metadata: Option<Value>Metadata keys to merge (set value to null to delete a key).
Trait Implementations§
Source§impl Clone for TaskUpdate
impl Clone for TaskUpdate
Source§fn clone(&self) -> TaskUpdate
fn clone(&self) -> TaskUpdate
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 TaskUpdate
impl Debug for TaskUpdate
Source§impl Default for TaskUpdate
impl Default for TaskUpdate
Source§fn default() -> TaskUpdate
fn default() -> TaskUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskUpdate
impl<'de> Deserialize<'de> for TaskUpdate
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 TaskUpdate
impl RefUnwindSafe for TaskUpdate
impl Send for TaskUpdate
impl Sync for TaskUpdate
impl Unpin for TaskUpdate
impl UnwindSafe for TaskUpdate
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more