pub struct ReadyTask {
pub id: Uuid,
pub definition: TaskDefinition,
}Expand description
A task that is ready to be run by a worker.
Fields§
§id: UuidThe task’s ID.
definition: TaskDefinitionThe task’s definition.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadyTask
impl RefUnwindSafe for ReadyTask
impl Send for ReadyTask
impl Sync for ReadyTask
impl Unpin for ReadyTask
impl UnsafeUnpin for ReadyTask
impl UnwindSafe for ReadyTask
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