[][src]Trait typebool::ops::And

pub trait And<A> {
    type Output;
}

The logical conjunction (intersection) of two Bools.

Associated Types

type Output

The result of this operation.

Loading content...

Implementors

impl<T> And<T> for False[src]

type Output = False

impl<T> And<T> for True[src]

type Output = T

Loading content...