[][src]Struct staticvec::CapacityError

pub struct CapacityError<const N: usize>;

This error indicates that an operation was attempted that would have increased the length value of a StaticVec, but the StaticVec was already at its maximum capacity of N.

Trait Implementations

impl<const N: usize> Clone for CapacityError<N>[src]

impl<const N: usize> Debug for CapacityError<N>[src]

impl<const N: usize> Display for CapacityError<N>[src]

impl<const N: usize> Eq for CapacityError<N>[src]

impl<const N: usize> Error for CapacityError<N>[src]

impl<const N: usize> From<CapacityError<N>> for StringError[src]

impl<const N: usize> PartialEq<CapacityError<N>> for CapacityError<N>[src]

impl<const N: usize> StructuralEq for CapacityError<N>[src]

impl<const N: usize> StructuralPartialEq for CapacityError<N>[src]

Auto Trait Implementations

impl<const N: usize> RefUnwindSafe for CapacityError<N>

impl<const N: usize> Send for CapacityError<N>

impl<const N: usize> Sync for CapacityError<N>

impl<const N: usize> Unpin for CapacityError<N>

impl<const N: usize> UnwindSafe for CapacityError<N>

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