pub struct TaskItemUpdate {
pub item_id: String,
pub status: TaskItemStatus,
pub notes: Option<String>,
pub evidence: Option<String>,
pub blocker: Option<String>,
pub criteria_met: Option<Vec<String>>,
}Fields§
§item_id: String§status: TaskItemStatus§notes: Option<String>§evidence: Option<String>§blocker: Option<String>§criteria_met: Option<Vec<String>>Trait Implementations§
Source§impl Clone for TaskItemUpdate
impl Clone for TaskItemUpdate
Source§fn clone(&self) -> TaskItemUpdate
fn clone(&self) -> TaskItemUpdate
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 moreAuto Trait Implementations§
impl Freeze for TaskItemUpdate
impl RefUnwindSafe for TaskItemUpdate
impl Send for TaskItemUpdate
impl Sync for TaskItemUpdate
impl Unpin for TaskItemUpdate
impl UnsafeUnpin for TaskItemUpdate
impl UnwindSafe for TaskItemUpdate
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