pub enum DreamTaskStatus {
Running,
Completed,
Failed,
Killed,
}Expand description
Status of a dream task.
Variants§
Trait Implementations§
Source§impl Clone for DreamTaskStatus
impl Clone for DreamTaskStatus
Source§fn clone(&self) -> DreamTaskStatus
fn clone(&self) -> DreamTaskStatus
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 DreamTaskStatus
impl RefUnwindSafe for DreamTaskStatus
impl Send for DreamTaskStatus
impl Sync for DreamTaskStatus
impl Unpin for DreamTaskStatus
impl UnsafeUnpin for DreamTaskStatus
impl UnwindSafe for DreamTaskStatus
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