Trait TupleAllAny

Source
pub trait TupleAllAny {
    // Required methods
    fn all(self) -> bool;
    fn any(self) -> bool;
}

Required Methods§

Source

fn all(self) -> bool

Source

fn any(self) -> bool

Implementations on Foreign Types§

Source§

impl TupleAllAny for (bool, bool)

Source§

fn all(self) -> bool

Source§

fn any(self) -> bool

Source§

impl TupleAllAny for (bool, bool, bool)

Source§

fn all(self) -> bool

Source§

fn any(self) -> bool

Source§

impl TupleAllAny for (bool, bool, bool, bool)

Source§

fn all(self) -> bool

Source§

fn any(self) -> bool

Implementors§