pub enum TickStartOutcome {
Started {
tick: u64,
},
Queued {
position: usize,
label: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for TickStartOutcome
impl Clone for TickStartOutcome
Source§fn clone(&self) -> TickStartOutcome
fn clone(&self) -> TickStartOutcome
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 TickStartOutcome
impl Debug for TickStartOutcome
impl Eq for TickStartOutcome
Source§impl PartialEq for TickStartOutcome
impl PartialEq for TickStartOutcome
impl StructuralPartialEq for TickStartOutcome
Auto Trait Implementations§
impl Freeze for TickStartOutcome
impl RefUnwindSafe for TickStartOutcome
impl Send for TickStartOutcome
impl Sync for TickStartOutcome
impl Unpin for TickStartOutcome
impl UnsafeUnpin for TickStartOutcome
impl UnwindSafe for TickStartOutcome
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