[][src]Struct verified::bool::False

pub struct False;

Trait Implementations

impl BitAnd<False> for True[src]

type Output = False

The resulting type after applying the & operator.

impl<Rhs: Bool> BitAnd<Rhs> for False[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<False> for False[src]

impl<Rhs: Bool> BitOr<Rhs> for False[src]

type Output = Rhs

The resulting type after applying the | operator.

impl BitOrAssign<False> for False[src]

impl BitXor<False> for True[src]

type Output = Self

The resulting type after applying the ^ operator.

impl<Rhs: Bool> BitXor<Rhs> for False[src]

type Output = Rhs

The resulting type after applying the ^ operator.

impl BitXorAssign<False> for False[src]

impl Bool for False[src]

impl Clone for False[src]

impl Copy for False[src]

impl Debug for False[src]

impl Default for False[src]

impl Display for False[src]

impl Eq for False[src]

impl From<False> for bool[src]

impl FromStr for False[src]

type Err = String

The associated error which can be returned from parsing.

impl Hash for False[src]

impl Not for False[src]

type Output = True

The resulting type after applying the ! operator.

impl PartialEq<False> for False[src]

impl PartialEq<False> for True[src]

impl PartialEq<True> for False[src]

impl<Rhs: Bool> PartialOrd<Rhs> for False where
    Self: PartialEq<Rhs>,
    Rhs: Into<bool> + Copy
[src]

impl StructuralEq for False[src]

impl StructuralPartialEq for False[src]

impl TryFrom<bool> for False[src]

type Error = &'static str

The type returned in the event of a conversion error.

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> Same<T> for 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.