[][src]Struct trait_eval::False

pub struct False {}

False (false)

Trait Implementations

impl AndAlso<False> for True[src]

type Result = False

impl<T: Bool> AndAlso<T> for False[src]

type Result = False

impl Bool for False[src]

impl Eval for False[src]

type Output = bool

The Rust representation of our type.

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

type Result = V

impl Not for False[src]

type Result = True

impl OrElse<False> for False[src]

type Result = False

impl OrElse<True> for False[src]

type Result = True

Auto Trait Implementations

impl RefUnwindSafe for False

impl Send for False

impl Sync for False

impl Unpin for False

impl UnwindSafe for False

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.