pub enum MetaLibState {
Initial,
Running,
Paused,
Complete,
Failed(String),
}Expand description
A state machine for MetaLib.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MetaLibState
impl Clone for MetaLibState
Source§fn clone(&self) -> MetaLibState
fn clone(&self) -> MetaLibState
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 moreSource§impl Debug for MetaLibState
impl Debug for MetaLibState
Source§impl PartialEq for MetaLibState
impl PartialEq for MetaLibState
impl StructuralPartialEq for MetaLibState
Auto Trait Implementations§
impl Freeze for MetaLibState
impl RefUnwindSafe for MetaLibState
impl Send for MetaLibState
impl Sync for MetaLibState
impl Unpin for MetaLibState
impl UnsafeUnpin for MetaLibState
impl UnwindSafe for MetaLibState
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