pub struct TaskUpdate {
pub subject: Option<String>,
pub description: Option<String>,
pub status: Option<TaskStatus>,
pub priority: Option<TaskPriority>,
pub labels: Option<Vec<String>>,
pub add_blocks: Option<Vec<TaskId>>,
pub remove_blocks: Option<Vec<TaskId>>,
pub owner: Option<String>,
pub metadata: Option<HashMap<String, Value>>,
pub add_blocked_by: Option<Vec<TaskId>>,
pub remove_blocked_by: Option<Vec<TaskId>>,
}Expand description
Input for updating an existing task
Fields§
§subject: Option<String>New subject/title (if Some)
description: Option<String>New description (if Some)
status: Option<TaskStatus>New status (if Some)
priority: Option<TaskPriority>New priority (if Some)
labels: Option<Vec<String>>Replace all labels (if Some)
add_blocks: Option<Vec<TaskId>>Task IDs to add to blocks
remove_blocks: Option<Vec<TaskId>>Task IDs to remove from blocks
owner: Option<String>New owner/assignee (if Some)
metadata: Option<HashMap<String, Value>>Metadata key-value pairs to merge (null value = delete key)
add_blocked_by: Option<Vec<TaskId>>Task IDs to add to blocked_by
remove_blocked_by: Option<Vec<TaskId>>Task IDs to remove from blocked_by
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 (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 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
Auto Trait Implementations§
impl Freeze for TaskUpdate
impl RefUnwindSafe for TaskUpdate
impl Send for TaskUpdate
impl Sync for TaskUpdate
impl Unpin for TaskUpdate
impl UnsafeUnpin 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,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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