BitAnd

Trait BitAnd 

Source
pub trait BitAnd<Rhs = Self> {
    type Output;

    // Required method
    fn bitand(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn bitand(self, rhs: Rhs) -> Self::Output

Implementations on Foreign Types§

Source§

impl BitAnd for bool

Source§

type Output = bool

Source§

fn bitand(self, rhs: bool) -> bool

Source§

impl BitAnd for i8

Source§

type Output = i8

Source§

fn bitand(self, rhs: i8) -> i8

Source§

impl BitAnd for i16

Source§

type Output = i16

Source§

fn bitand(self, rhs: i16) -> i16

Source§

impl BitAnd for i32

Source§

type Output = i32

Source§

fn bitand(self, rhs: i32) -> i32

Source§

impl BitAnd for i64

Source§

type Output = i64

Source§

fn bitand(self, rhs: i64) -> i64

Source§

impl BitAnd for i128

Source§

type Output = i128

Source§

fn bitand(self, rhs: i128) -> i128

Source§

impl BitAnd for isize

Source§

impl BitAnd for u8

Source§

type Output = u8

Source§

fn bitand(self, rhs: u8) -> u8

Source§

impl BitAnd for u16

Source§

type Output = u16

Source§

fn bitand(self, rhs: u16) -> u16

Source§

impl BitAnd for u32

Source§

type Output = u32

Source§

fn bitand(self, rhs: u32) -> u32

Source§

impl BitAnd for u64

Source§

type Output = u64

Source§

fn bitand(self, rhs: u64) -> u64

Source§

impl BitAnd for u128

Source§

type Output = u128

Source§

fn bitand(self, rhs: u128) -> u128

Source§

impl BitAnd for usize

Implementors§