pub enum InterpretationEndKind {
Complete,
Cancelled,
Terminated,
TransportFailed,
DialectFailed,
LimitExceeded,
InvariantFailed,
}Expand description
Interpretation terminal kinds.
Variants§
Complete
Clean complete.
Cancelled
Cancelled.
Terminated
Terminated.
TransportFailed
Transport failed.
DialectFailed
Dialect failed.
LimitExceeded
Limit exceeded.
InvariantFailed
Invariant failed.
Trait Implementations§
Source§impl Clone for InterpretationEndKind
impl Clone for InterpretationEndKind
Source§fn clone(&self) -> InterpretationEndKind
fn clone(&self) -> InterpretationEndKind
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 InterpretationEndKind
Source§impl Debug for InterpretationEndKind
impl Debug for InterpretationEndKind
Source§impl<'de> Deserialize<'de> for InterpretationEndKind
impl<'de> Deserialize<'de> for InterpretationEndKind
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 InterpretationEndKind
Source§impl PartialEq for InterpretationEndKind
impl PartialEq for InterpretationEndKind
Source§impl Serialize for InterpretationEndKind
impl Serialize for InterpretationEndKind
impl StructuralPartialEq for InterpretationEndKind
Auto Trait Implementations§
impl Freeze for InterpretationEndKind
impl RefUnwindSafe for InterpretationEndKind
impl Send for InterpretationEndKind
impl Sync for InterpretationEndKind
impl Unpin for InterpretationEndKind
impl UnsafeUnpin for InterpretationEndKind
impl UnwindSafe for InterpretationEndKind
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