pub enum AsyncOperationStatus {
Running,
WaitingForInput,
Completed,
Failed,
Stopped,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AsyncOperationStatus
impl Clone for AsyncOperationStatus
Source§fn clone(&self) -> AsyncOperationStatus
fn clone(&self) -> AsyncOperationStatus
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 AsyncOperationStatus
Source§impl Debug for AsyncOperationStatus
impl Debug for AsyncOperationStatus
Source§impl<'de> Deserialize<'de> for AsyncOperationStatus
impl<'de> Deserialize<'de> for AsyncOperationStatus
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 AsyncOperationStatus
Source§impl PartialEq for AsyncOperationStatus
impl PartialEq for AsyncOperationStatus
Source§fn eq(&self, other: &AsyncOperationStatus) -> bool
fn eq(&self, other: &AsyncOperationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AsyncOperationStatus
impl Serialize for AsyncOperationStatus
impl StructuralPartialEq for AsyncOperationStatus
Auto Trait Implementations§
impl Freeze for AsyncOperationStatus
impl RefUnwindSafe for AsyncOperationStatus
impl Send for AsyncOperationStatus
impl Sync for AsyncOperationStatus
impl Unpin for AsyncOperationStatus
impl UnsafeUnpin for AsyncOperationStatus
impl UnwindSafe for AsyncOperationStatus
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