pub enum QueuedWorkRunOutcome {
Submitted {
session_id: String,
},
Idle,
}Variants§
Trait Implementations§
Source§impl Clone for QueuedWorkRunOutcome
impl Clone for QueuedWorkRunOutcome
Source§fn clone(&self) -> QueuedWorkRunOutcome
fn clone(&self) -> QueuedWorkRunOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueuedWorkRunOutcome
impl Debug for QueuedWorkRunOutcome
impl Eq for QueuedWorkRunOutcome
Source§impl PartialEq for QueuedWorkRunOutcome
impl PartialEq for QueuedWorkRunOutcome
Source§fn eq(&self, other: &QueuedWorkRunOutcome) -> bool
fn eq(&self, other: &QueuedWorkRunOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueuedWorkRunOutcome
Auto Trait Implementations§
impl Freeze for QueuedWorkRunOutcome
impl RefUnwindSafe for QueuedWorkRunOutcome
impl Send for QueuedWorkRunOutcome
impl Sync for QueuedWorkRunOutcome
impl Unpin for QueuedWorkRunOutcome
impl UnsafeUnpin for QueuedWorkRunOutcome
impl UnwindSafe for QueuedWorkRunOutcome
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