pub enum PointerStatus {
Pending,
Running,
Complete,
Skipped,
Sleeping,
WaitingForEvent,
Failed,
Compensated,
Cancelled,
PendingPredecessor,
}Expand description
Pointerstatus.
Variants§
Pending
Pending.
Running
Running.
Complete
Complete.
Skipped
Skipped.
Sleeping
Sleeping.
WaitingForEvent
Waitingforevent.
Failed
Failed.
Compensated
Compensated.
Cancelled
Cancelled.
PendingPredecessor
Pendingpredecessor.
Trait Implementations§
Source§impl Clone for PointerStatus
impl Clone for PointerStatus
Source§fn clone(&self) -> PointerStatus
fn clone(&self) -> PointerStatus
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 PointerStatus
impl Debug for PointerStatus
Source§impl Default for PointerStatus
impl Default for PointerStatus
Source§fn default() -> PointerStatus
fn default() -> PointerStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PointerStatus
impl<'de> Deserialize<'de> for PointerStatus
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 Hash for PointerStatus
impl Hash for PointerStatus
Source§impl PartialEq for PointerStatus
impl PartialEq for PointerStatus
Source§fn eq(&self, other: &PointerStatus) -> bool
fn eq(&self, other: &PointerStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PointerStatus
impl Serialize for PointerStatus
impl Copy for PointerStatus
impl Eq for PointerStatus
impl StructuralPartialEq for PointerStatus
Auto Trait Implementations§
impl Freeze for PointerStatus
impl RefUnwindSafe for PointerStatus
impl Send for PointerStatus
impl Sync for PointerStatus
impl Unpin for PointerStatus
impl UnsafeUnpin for PointerStatus
impl UnwindSafe for PointerStatus
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