[][src]Struct trait_eval::True

pub struct True {}

True (true)

Trait Implementations

impl AndAlso<False> for True[src]

type Result = False

impl AndAlso<True> for True[src]

type Result = True

impl Bool for True[src]

impl Eval for True[src]

type Output = bool

The Rust representation of our type.

impl<U, V> If<True> for (U, V)[src]

type Result = U

impl Not for True[src]

type Result = False

impl<T: Bool> OrElse<T> for True[src]

type Result = True

impl OrElse<True> for False[src]

type Result = True

Auto Trait Implementations

impl RefUnwindSafe for True

impl Send for True

impl Sync for True

impl Unpin for True

impl UnwindSafe for True

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