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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StageSeparation
Source§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
impl Eq for StageSeparation
Source§impl PartialEq for StageSeparation
impl PartialEq for StageSeparation
Source§fn eq(&self, other: &StageSeparation) -> bool
fn eq(&self, other: &StageSeparation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StageSeparation
impl Serialize 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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.