[][src]Struct verified::bool::BinOp

pub struct BinOp<Lhs: Bool, Rhs: Bool>(_, _);

Trait Implementations

impl And for BinOp<True, True>[src]

impl<Lhs: Bool, Rhs: Bool> Bool for BinOp<Lhs, Rhs>[src]

impl<Lhs: Clone + Bool, Rhs: Clone + Bool> Clone for BinOp<Lhs, Rhs>[src]

impl<Lhs: Copy + Bool, Rhs: Copy + Bool> Copy for BinOp<Lhs, Rhs>[src]

impl<Lhs: Debug + Bool, Rhs: Debug + Bool> Debug for BinOp<Lhs, Rhs>[src]

impl<Lhs: Default + Bool, Rhs: Default + Bool> Default for BinOp<Lhs, Rhs>[src]

impl<Lhs: Eq + Bool, Rhs: Eq + Bool> Eq for BinOp<Lhs, Rhs>[src]

impl Or for BinOp<True, True>[src]

impl Or for BinOp<True, False>[src]

impl Or for BinOp<False, True>[src]

impl<Lhs: PartialEq + Bool, Rhs: PartialEq + Bool> PartialEq<BinOp<Lhs, Rhs>> for BinOp<Lhs, Rhs>[src]

impl<Lhs: Bool, Rhs: Bool> StructuralEq for BinOp<Lhs, Rhs>[src]

impl<Lhs: Bool, Rhs: Bool> StructuralPartialEq for BinOp<Lhs, Rhs>[src]

impl Xor for BinOp<False, True>[src]

impl Xor for BinOp<True, False>[src]

Auto Trait Implementations

impl<Lhs, Rhs> RefUnwindSafe for BinOp<Lhs, Rhs> where
    Lhs: RefUnwindSafe,
    Rhs: RefUnwindSafe

impl<Lhs, Rhs> Send for BinOp<Lhs, Rhs> where
    Lhs: Send,
    Rhs: Send

impl<Lhs, Rhs> Sync for BinOp<Lhs, Rhs> where
    Lhs: Sync,
    Rhs: Sync

impl<Lhs, Rhs> Unpin for BinOp<Lhs, Rhs> where
    Lhs: Unpin,
    Rhs: Unpin

impl<Lhs, Rhs> UnwindSafe for BinOp<Lhs, Rhs> where
    Lhs: UnwindSafe,
    Rhs: UnwindSafe

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