pub enum ReceiveError {
StreamClosed,
Timeout(Duration),
WebSocket(String),
}Expand description
Receive-related errors
Variants§
Trait Implementations§
Source§impl Clone for ReceiveError
impl Clone for ReceiveError
Source§fn clone(&self) -> ReceiveError
fn clone(&self) -> ReceiveError
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 ReceiveError
impl Debug for ReceiveError
Source§impl Display for ReceiveError
impl Display for ReceiveError
Source§impl Error for ReceiveError
impl Error for ReceiveError
1.30.0 · 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 From<Error> for ReceiveError
impl From<Error> for ReceiveError
Source§impl From<ReceiveError> for ClientError
impl From<ReceiveError> for ClientError
Source§fn from(source: ReceiveError) -> Self
fn from(source: ReceiveError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReceiveError
impl RefUnwindSafe for ReceiveError
impl Send for ReceiveError
impl Sync for ReceiveError
impl Unpin for ReceiveError
impl UnwindSafe for ReceiveError
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