[][src]Struct lasso::MiniSpur

#[repr(transparent)]pub struct MiniSpur { /* fields omitted */ }

A miniature Key utilizing only 16 bits of space

Internally is a NonZeroU16 to allow for space optimizations when stored inside of an Option

Trait Implementations

impl Clone for MiniSpur[src]

impl Copy for MiniSpur[src]

impl Debug for MiniSpur[src]

impl Default for MiniSpur[src]

impl Eq for MiniSpur[src]

impl Hash for MiniSpur[src]

impl Key for MiniSpur[src]

fn try_from_usize(int: usize) -> Option<Self>[src]

Returns None if int is greater than usize::MAX - 1

impl Ord for MiniSpur[src]

impl PartialEq<MiniSpur> for MiniSpur[src]

impl PartialOrd<MiniSpur> for MiniSpur[src]

impl StructuralEq for MiniSpur[src]

impl StructuralPartialEq for MiniSpur[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.