pub enum GatewayClientTransportError<E> {
Transport(E),
Decode(BinaryDecodeError),
NonCommandFrame,
SourceMismatch {
packet_client_id: ClientId,
frame_client_id: ClientId,
},
}Expand description
Error produced while pumping gateway-side client command packets.
Variants§
Transport(E)
Underlying client transport failed while receiving or sending acknowledgements.
Decode(BinaryDecodeError)
Wire decoding failed.
NonCommandFrame
Packet decoded as a non-command frame.
SourceMismatch
Transport source client and command frame client disagreed.
Trait Implementations§
Source§impl<E: Clone> Clone for GatewayClientTransportError<E>
impl<E: Clone> Clone for GatewayClientTransportError<E>
Source§fn clone(&self) -> GatewayClientTransportError<E>
fn clone(&self) -> GatewayClientTransportError<E>
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<E: Debug> Debug for GatewayClientTransportError<E>
impl<E: Debug> Debug for GatewayClientTransportError<E>
Source§impl<E: Display> Display for GatewayClientTransportError<E>
impl<E: Display> Display for GatewayClientTransportError<E>
impl<E: Eq> Eq for GatewayClientTransportError<E>
Source§impl<E> Error for GatewayClientTransportError<E>where
E: Error + 'static,
impl<E> Error for GatewayClientTransportError<E>where
E: Error + 'static,
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl<E: PartialEq> PartialEq for GatewayClientTransportError<E>
impl<E: PartialEq> PartialEq for GatewayClientTransportError<E>
impl<E: PartialEq> StructuralPartialEq for GatewayClientTransportError<E>
Auto Trait Implementations§
impl<E> Freeze for GatewayClientTransportError<E>where
E: Freeze,
impl<E> RefUnwindSafe for GatewayClientTransportError<E>where
E: RefUnwindSafe,
impl<E> Send for GatewayClientTransportError<E>where
E: Send,
impl<E> Sync for GatewayClientTransportError<E>where
E: Sync,
impl<E> Unpin for GatewayClientTransportError<E>where
E: Unpin,
impl<E> UnsafeUnpin for GatewayClientTransportError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for GatewayClientTransportError<E>where
E: UnwindSafe,
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