[][src]Struct verified::bool::True

pub struct True;

Trait Implementations

impl BitAnd<False> for True[src]

type Output = False

The resulting type after applying the & operator.

impl BitAnd<True> for True[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<True> for True[src]

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

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<True> for True[src]

impl BitXor<False> for True[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<True> for True[src]

type Output = False

The resulting type after applying the ^ operator.

impl Bool for True[src]

impl Clone for True[src]

impl Copy for True[src]

impl Debug for True[src]

impl Default for True[src]

impl Display for True[src]

impl Eq for True[src]

impl From<True> for bool[src]

impl FromStr for True[src]

type Err = String

The associated error which can be returned from parsing.

impl Hash for True[src]

impl Not for True[src]

type Output = False

The resulting type after applying the ! operator.

impl PartialEq<False> for True[src]

impl PartialEq<True> for True[src]

impl PartialEq<True> for False[src]

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

impl StructuralEq for True[src]

impl StructuralPartialEq for True[src]

impl TryFrom<bool> for True[src]

type Error = &'static str

The type returned in the event of a conversion error.

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