pub enum ProjectionCurrentState {
Pending,
Started,
IdentityReady,
IdentityFailed,
CommandSucceeded,
CommandFailed,
ExportSucceeded,
ExportFailed,
Destroyed,
DestroyFailed,
}Variants§
Pending
Started
IdentityReady
IdentityFailed
CommandSucceeded
CommandFailed
ExportSucceeded
ExportFailed
Destroyed
DestroyFailed
Trait Implementations§
Source§impl Clone for ProjectionCurrentState
impl Clone for ProjectionCurrentState
Source§fn clone(&self) -> ProjectionCurrentState
fn clone(&self) -> ProjectionCurrentState
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 ProjectionCurrentState
impl Debug for ProjectionCurrentState
Source§impl<'de> Deserialize<'de> for ProjectionCurrentState
impl<'de> Deserialize<'de> for ProjectionCurrentState
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 ProjectionCurrentState
impl PartialEq for ProjectionCurrentState
Source§fn eq(&self, other: &ProjectionCurrentState) -> bool
fn eq(&self, other: &ProjectionCurrentState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectionCurrentState
impl Serialize for ProjectionCurrentState
impl Copy for ProjectionCurrentState
impl Eq for ProjectionCurrentState
impl StructuralPartialEq for ProjectionCurrentState
Auto Trait Implementations§
impl Freeze for ProjectionCurrentState
impl RefUnwindSafe for ProjectionCurrentState
impl Send for ProjectionCurrentState
impl Sync for ProjectionCurrentState
impl Unpin for ProjectionCurrentState
impl UnsafeUnpin for ProjectionCurrentState
impl UnwindSafe for ProjectionCurrentState
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