pub struct CloseCode(/* private fields */);
Expand description

Close status code.

Implementations§

source§

impl CloseCode

source

pub const NORMAL_CLOSURE: Self = _

Normal closure, meaning that the purpose for which the connection was established has been fulfilled.

source

pub const GOING_AWAY: Self = _

Endpoint is “going away”, such as a server going down or a browser having navigated away from a page.

source

pub const PROTOCOL_ERROR: Self = _

Endpoint is terminating the connection due to a protocol error.

source

pub const UNSUPPORTED_DATA: Self = _

Endpoint is terminating the connection because it has received a type of data it cannot accept.

source

pub const NO_STATUS_RECEIVED: Self = _

No status code was actually present.

source

pub const INVALID_FRAME_PAYLOAD_DATA: Self = _

Endpoint is terminating the connection because it has received data within a message that was not consistent with the type of the message.

source

pub const POLICY_VIOLATION: Self = _

Endpoint is terminating the connection because it has received a message that violates its policy.

source

pub const MESSAGE_TOO_BIG: Self = _

Endpoint is terminating the connection because it has received a message that is too big for it to process.

source

pub const MANDATORY_EXTENSION: Self = _

Client is terminating the connection because it has expected the server to negotiate one or more extension, but the server didn’t return them in the response message of the Websocket handshake.

source

pub const INTERNAL_SERVER_ERROR: Self = _

Server is terminating the connection because it encountered an unexpected condition that prevented it from fulfilling the request.

source

pub const SERVICE_RESTART: Self = _

Service is restarted. A client may reconnect, and if it choses to do, should reconnect using a randomized delay of 5–30s.

source

pub const SERVICE_OVERLOAD: Self = _

Service is experiencing overload. A client should only connect to a different IP (when there are multiple for the target) or reconnect to the same IP upon user action.

source

pub const BAD_GATEWAY: Self = _

The server was acting as a gateway or proxy and received an invalid response from the upstream server. This is similar to the HTTP 502 status code.

Trait Implementations§

source§

impl Clone for CloseCode

source§

fn clone(&self) -> CloseCode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CloseCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<CloseCode> for u16

source§

fn from(value: CloseCode) -> Self

Converts to this type from the input type.
source§

impl PartialEq<CloseCode> for CloseCode

source§

fn eq(&self, other: &CloseCode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<u16> for CloseCode

§

type Error = ProtocolError

The type returned in the event of a conversion error.
source§

fn try_from(value: u16) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for CloseCode

source§

impl Eq for CloseCode

source§

impl StructuralEq for CloseCode

source§

impl StructuralPartialEq for CloseCode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more