Struct stun_codec::rfc5766::errors::InsufficientCapacity[][src]

pub struct InsufficientCapacity;

508: "Insufficient Capacity".

The server is unable to carry out the request due to some capacity limit being reached. In an Allocate response, this could be due to the server having no more relayed transport addresses available at that time, having none with the requested properties, or the one that corresponds to the specified reservation token is not available.

RFC 5766 -- 15. New STUN Error Response Codes

Implementations

impl InsufficientCapacity[src]

pub const CODEPOINT: u16[src]

The codepoint of the error.

Trait Implementations

impl Clone for InsufficientCapacity[src]

impl Copy for InsufficientCapacity[src]

impl Debug for InsufficientCapacity[src]

impl Eq for InsufficientCapacity[src]

impl From<InsufficientCapacity> for ErrorCode[src]

impl Hash for InsufficientCapacity[src]

impl PartialEq<InsufficientCapacity> for InsufficientCapacity[src]

impl StructuralEq for InsufficientCapacity[src]

impl StructuralPartialEq for InsufficientCapacity[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.