BitOr

Trait BitOr 

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

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

Required Associated Types§

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl BitOr for bool

Source§

type Output = bool

Source§

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

Source§

impl BitOr for i8

Source§

type Output = i8

Source§

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

Source§

impl BitOr for i16

Source§

type Output = i16

Source§

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

Source§

impl BitOr for i32

Source§

type Output = i32

Source§

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

Source§

impl BitOr for i64

Source§

type Output = i64

Source§

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

Source§

impl BitOr for i128

Source§

type Output = i128

Source§

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

Source§

impl BitOr for isize

Source§

type Output = isize

Source§

fn bitor(self, rhs: isize) -> isize

Source§

impl BitOr for u8

Source§

type Output = u8

Source§

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

Source§

impl BitOr for u16

Source§

type Output = u16

Source§

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

Source§

impl BitOr for u32

Source§

type Output = u32

Source§

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

Source§

impl BitOr for u64

Source§

type Output = u64

Source§

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

Source§

impl BitOr for u128

Source§

type Output = u128

Source§

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

Source§

impl BitOr for usize

Source§

type Output = usize

Source§

fn bitor(self, rhs: usize) -> usize

Implementors§