Enum quinn_proto::ReadableError[][src]

pub enum ReadableError {
    UnknownStream,
    IllegalOrderedRead,
}

Errors triggered when opening a recv stream for reading

Variants

UnknownStream

The stream has not been opened or was already stopped, finished, or reset

IllegalOrderedRead

Attempted an ordered read following an unordered read

Performing an unordered read allows discontinuities to arise in the receive buffer of a stream which cannot be recovered, making further ordered reads impossible.

Trait Implementations

impl Clone for ReadableError[src]

impl Debug for ReadableError[src]

impl Display for ReadableError[src]

impl Eq for ReadableError[src]

impl Error for ReadableError[src]

impl Hash for ReadableError[src]

impl Ord for ReadableError[src]

impl PartialEq<ReadableError> for ReadableError[src]

impl PartialOrd<ReadableError> for ReadableError[src]

impl StructuralEq for ReadableError[src]

impl StructuralPartialEq for ReadableError[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> Instrument for T[src]

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

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>,