pub enum StageSeparation {
Stage1Active,
Separating,
Stage2Active,
Complete,
}Expand description
Stage separation event.
Variants§
Stage1Active
First stage active.
Separating
Separation in progress.
Stage2Active
Second stage active.
Complete
All stages exhausted.
Trait Implementations§
Source§impl Clone for StageSeparation
impl Clone for StageSeparation
Source§fn clone(&self) -> StageSeparation
fn clone(&self) -> StageSeparation
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 StageSeparation
impl Debug for StageSeparation
Source§impl<'de> Deserialize<'de> for StageSeparation
impl<'de> Deserialize<'de> for StageSeparation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StageSeparation
impl PartialEq for StageSeparation
Source§impl Serialize for StageSeparation
impl Serialize for StageSeparation
impl Copy for StageSeparation
impl Eq for StageSeparation
impl StructuralPartialEq for StageSeparation
Auto Trait Implementations§
impl Freeze for StageSeparation
impl RefUnwindSafe for StageSeparation
impl Send for StageSeparation
impl Sync for StageSeparation
impl Unpin for StageSeparation
impl UnsafeUnpin for StageSeparation
impl UnwindSafe for StageSeparation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.