Enum vesta::Exhaustive[][src]

pub enum Exhaustive<const N: usize> {}

A marker type indicating that the tag for some type will always be strictly less than N.

Use this to mark the Range of exhaustive enumerations.

Trait Implementations

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

impl<const N: usize> Copy for Exhaustive<N>[src]

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

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

impl<const N: usize> Hash for Exhaustive<N>[src]

impl<const N: usize> Ord for Exhaustive<N>[src]

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

impl<const N: usize> PartialOrd<Exhaustive<N>> for Exhaustive<N>[src]

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

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

Auto Trait Implementations

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

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

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

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

impl<const N: usize> UnwindSafe for Exhaustive<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> CaseExt for T[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.