Enum tungstenite::error::CapacityError[][src]

pub enum CapacityError {
    TooManyHeaders,
    HeaderTooLong,
    MessageTooLong {
        size: usize,
        max_size: usize,
    },
    TcpBufferFull,
}

Indicates the specific type/cause of a capacity error.

Variants

TooManyHeaders

Too many headers provided (see httparse::Error::TooManyHeaders).

HeaderTooLong

Received header is too long.

MessageTooLong

Message is bigger than the maximum allowed size.

Fields of MessageTooLong

size: usize

The size of the message.

max_size: usize

The maximum allowed message size.

TcpBufferFull

TCP buffer is full.

Trait Implementations

impl Clone for CapacityError[src]

impl Copy for CapacityError[src]

impl Debug for CapacityError[src]

impl Display for CapacityError[src]

impl Eq for CapacityError[src]

impl Error for CapacityError[src]

impl PartialEq<CapacityError> for CapacityError[src]

impl StructuralEq for CapacityError[src]

impl StructuralPartialEq for CapacityError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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