#[non_exhaustive]pub struct InvalidUpgradeHeader;Expand description
Rejection type for WebSocketUpgrade.
Implementations§
Trait Implementations§
Source§impl Debug for InvalidUpgradeHeader
impl Debug for InvalidUpgradeHeader
Source§impl Default for InvalidUpgradeHeader
impl Default for InvalidUpgradeHeader
Source§fn default() -> InvalidUpgradeHeader
fn default() -> InvalidUpgradeHeader
Returns the “default value” for a type. Read more
Source§impl Display for InvalidUpgradeHeader
impl Display for InvalidUpgradeHeader
Source§impl Error for InvalidUpgradeHeader
impl Error for InvalidUpgradeHeader
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<InvalidUpgradeHeader> for WebSocketUpgradeRejection
impl From<InvalidUpgradeHeader> for WebSocketUpgradeRejection
Source§fn from(inner: InvalidUpgradeHeader) -> WebSocketUpgradeRejection
fn from(inner: InvalidUpgradeHeader) -> WebSocketUpgradeRejection
Converts to this type from the input type.
Source§impl IntoResponse for InvalidUpgradeHeader
impl IntoResponse for InvalidUpgradeHeader
Source§fn into_response(self) -> Response<Body>
fn into_response(self) -> Response<Body>
Create a response.
Auto Trait Implementations§
impl Freeze for InvalidUpgradeHeader
impl RefUnwindSafe for InvalidUpgradeHeader
impl Send for InvalidUpgradeHeader
impl Sync for InvalidUpgradeHeader
impl Unpin for InvalidUpgradeHeader
impl UnsafeUnpin for InvalidUpgradeHeader
impl UnwindSafe for InvalidUpgradeHeader
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.