pub enum HandshakeFailureError {
HeaderError(String),
ValidationError,
}Variants§
Trait Implementations§
Source§impl Debug for HandshakeFailureError
impl Debug for HandshakeFailureError
Source§impl Display for HandshakeFailureError
impl Display for HandshakeFailureError
Source§impl Error for HandshakeFailureError
impl Error for HandshakeFailureError
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<HandshakeFailureError> for WebSocketError
impl From<HandshakeFailureError> for WebSocketError
Source§fn from(source: HandshakeFailureError) -> Self
fn from(source: HandshakeFailureError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HandshakeFailureError
impl RefUnwindSafe for HandshakeFailureError
impl Send for HandshakeFailureError
impl Sync for HandshakeFailureError
impl Unpin for HandshakeFailureError
impl UnsafeUnpin for HandshakeFailureError
impl UnwindSafe for HandshakeFailureError
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