pub struct TaskEdit {
pub title: String,
pub body: String,
pub priority: Priority,
pub agent: Option<String>,
pub human: bool,
}Expand description
Content edits. State is deliberately absent — use Store::apply.
Fields§
§title: String§body: String§priority: Priority§agent: Option<String>§human: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for TaskEdit
impl RefUnwindSafe for TaskEdit
impl Send for TaskEdit
impl Sync for TaskEdit
impl Unpin for TaskEdit
impl UnsafeUnpin for TaskEdit
impl UnwindSafe for TaskEdit
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