[][src]Enum bee_ternary::trit::unbalanced::Utrit

#[repr(i8)]pub enum Utrit {
    Zero,
    One,
    Two,
}

Variants

Zero
One
Two

Trait Implementations

impl Clone for Utrit[src]

impl Copy for Utrit[src]

impl Debug for Utrit[src]

impl Display for Utrit[src]

impl Eq for Utrit[src]

impl From<Utrit> for i8[src]

impl Hash for Utrit[src]

impl Ord for Utrit[src]

impl PartialEq<Utrit> for Utrit[src]

impl PartialOrd<Utrit> for Utrit[src]

impl ShiftTernary for Utrit[src]

type Target = Btrit

The trit type that results from shifting this trit.

impl StructuralEq for Utrit[src]

impl StructuralPartialEq for Utrit[src]

impl Trit for Utrit[src]

impl TryFrom<i8> for Utrit[src]

type Error = ()

The type returned in the event of a conversion error.

impl TryFrom<u8> for Utrit[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Utrit

impl Send for Utrit

impl Sync for Utrit

impl Unpin for Utrit

impl UnwindSafe for Utrit

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.