pub enum InteractionOutcome {
Completed,
InProgress,
Cancelled,
Failed,
}Expand description
Outcome of an interaction.
Variants§
Completed
Interaction completed successfully.
InProgress
Interaction is still in progress.
Cancelled
Interaction was cancelled.
Failed
Interaction failed.
Trait Implementations§
Source§impl Clone for InteractionOutcome
impl Clone for InteractionOutcome
Source§fn clone(&self) -> InteractionOutcome
fn clone(&self) -> InteractionOutcome
Returns a duplicate of the value. Read more
1.0.0 · 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 InteractionOutcome
impl Debug for InteractionOutcome
Source§impl<'de> Deserialize<'de> for InteractionOutcome
impl<'de> Deserialize<'de> for InteractionOutcome
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 InteractionOutcome
impl PartialEq for InteractionOutcome
Source§impl Serialize for InteractionOutcome
impl Serialize for InteractionOutcome
impl Eq for InteractionOutcome
impl StructuralPartialEq for InteractionOutcome
Auto Trait Implementations§
impl Freeze for InteractionOutcome
impl RefUnwindSafe for InteractionOutcome
impl Send for InteractionOutcome
impl Sync for InteractionOutcome
impl Unpin for InteractionOutcome
impl UnwindSafe for InteractionOutcome
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