Enum wisp_mux::CloseReason

source ·
pub enum CloseReason {
    Unknown = 1,
    Voluntary = 2,
    Unexpected = 3,
    IncompatibleExtensions = 4,
    ServerStreamInvalidInfo = 65,
    ServerStreamUnreachable = 66,
    ServerStreamConnectionTimedOut = 67,
    ServerStreamConnectionRefused = 68,
    ServerStreamTimedOut = 71,
    ServerStreamBlockedAddress = 72,
    ServerStreamThrottled = 73,
    ClientUnexpected = 129,
}
Expand description

Close reason.

See the docs

Variants§

§

Unknown = 1

Reason unspecified or unknown.

§

Voluntary = 2

Voluntary stream closure.

§

Unexpected = 3

Unexpected stream closure due to a network error.

§

IncompatibleExtensions = 4

Incompatible extensions. Only used during the handshake.

§

ServerStreamInvalidInfo = 65

Stream creation failed due to invalid information.

§

ServerStreamUnreachable = 66

Stream creation failed due to an unreachable destination host.

§

ServerStreamConnectionTimedOut = 67

Stream creation timed out due to the destination server not responding.

§

ServerStreamConnectionRefused = 68

Stream creation failed due to the destination server refusing the connection.

§

ServerStreamTimedOut = 71

TCP data transfer timed out.

§

ServerStreamBlockedAddress = 72

Stream destination address/domain is intentionally blocked by the proxy server.

§

ServerStreamThrottled = 73

Connection throttled by the server.

§

ClientUnexpected = 129

The client has encountered an unexpected error.

Trait Implementations§

source§

impl Clone for CloseReason

source§

fn clone(&self) -> CloseReason

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 CloseReason

source§

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

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

impl PartialEq for CloseReason

source§

fn eq(&self, other: &CloseReason) -> 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<u8> for CloseReason

§

type Error = WispError

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

fn try_from(close_reason: u8) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for CloseReason

source§

impl StructuralPartialEq for CloseReason

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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, U> Into<U> for T
where 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 T
where 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 T
where 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 T
where 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.
source§

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

source§

fn vzip(self) -> V