pub enum OperationStreamOutcome {
Clean,
Cancelled,
TimedOut,
Busy,
PayloadTooLarge(String),
Truncated,
Protocol(String),
Transport(String),
}Variants§
Trait Implementations§
Source§impl Clone for OperationStreamOutcome
impl Clone for OperationStreamOutcome
Source§fn clone(&self) -> OperationStreamOutcome
fn clone(&self) -> OperationStreamOutcome
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 OperationStreamOutcome
impl Debug for OperationStreamOutcome
impl Eq for OperationStreamOutcome
Source§impl PartialEq for OperationStreamOutcome
impl PartialEq for OperationStreamOutcome
impl StructuralPartialEq for OperationStreamOutcome
Auto Trait Implementations§
impl Freeze for OperationStreamOutcome
impl RefUnwindSafe for OperationStreamOutcome
impl Send for OperationStreamOutcome
impl Sync for OperationStreamOutcome
impl Unpin for OperationStreamOutcome
impl UnsafeUnpin for OperationStreamOutcome
impl UnwindSafe for OperationStreamOutcome
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