pub struct TaskCommand {
pub operation: TaskOperation,
pub task_id: Option<u32>,
pub description: Option<String>,
}Expand description
Represents a command with its parameters
Fields§
§operation: TaskOperation§task_id: Option<u32>§description: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskCommand
impl RefUnwindSafe for TaskCommand
impl Send for TaskCommand
impl Sync for TaskCommand
impl Unpin for TaskCommand
impl UnwindSafe for TaskCommand
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