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