pub enum ReceiveError {
UnexpectedContinuation,
InterleavedDataFrame,
InvalidUtf8(Utf8Error),
MessageTooLarge,
}Expand description
Receive-Errors.
Variants§
UnexpectedContinuation
Continuation-Frame ohne vorausgehenden Text/Binary-Frame.
InterleavedDataFrame
Neuer Text/Binary-Frame waehrend Continuation-Sequenz.
InvalidUtf8(Utf8Error)
UTF-8-Fehler in Text-Message.
MessageTooLarge
Reassembly-Buffer ueberschreitet max_message_size.
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 (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 ReceiveError
impl Debug for ReceiveError
Source§impl Display for ReceiveError
impl Display for ReceiveError
Source§impl Error for ReceiveError
Available on crate feature std only.
impl Error for ReceiveError
Available on crate feature
std only.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 PartialEq for ReceiveError
impl PartialEq for ReceiveError
Source§fn eq(&self, other: &ReceiveError) -> bool
fn eq(&self, other: &ReceiveError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReceiveError
impl StructuralPartialEq for ReceiveError
Auto Trait Implementations§
impl Freeze for ReceiveError
impl RefUnwindSafe for ReceiveError
impl Send for ReceiveError
impl Sync for ReceiveError
impl Unpin for ReceiveError
impl UnsafeUnpin 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