pub trait BitOrAssign<Rhs = Self> {
    // Required method
    fn bitor_assign(&mut self, rhs: Rhs);
}

Required Methods§

source

fn bitor_assign(&mut self, rhs: Rhs)

Implementations on Foreign Types§

source§

impl BitOrAssign<i32> for i32

source§

const fn bitor_assign(&mut self, other: i32)

source§

impl BitOrAssign<u32> for u32

source§

const fn bitor_assign(&mut self, other: u32)

source§

impl BitOrAssign<u128> for u128

source§

const fn bitor_assign(&mut self, other: u128)

source§

impl BitOrAssign<isize> for isize

source§

const fn bitor_assign(&mut self, other: isize)

source§

impl BitOrAssign<bool> for bool

source§

const fn bitor_assign(&mut self, other: bool)

source§

impl BitOrAssign<u8> for u8

source§

const fn bitor_assign(&mut self, other: u8)

source§

impl BitOrAssign<i16> for i16

source§

const fn bitor_assign(&mut self, other: i16)

source§

impl BitOrAssign<usize> for usize

source§

const fn bitor_assign(&mut self, other: usize)

source§

impl BitOrAssign<u16> for u16

source§

const fn bitor_assign(&mut self, other: u16)

source§

impl BitOrAssign<u64> for u64

source§

const fn bitor_assign(&mut self, other: u64)

source§

impl BitOrAssign<i128> for i128

source§

const fn bitor_assign(&mut self, other: i128)

source§

impl BitOrAssign<i64> for i64

source§

const fn bitor_assign(&mut self, other: i64)

source§

impl BitOrAssign<i8> for i8

source§

const fn bitor_assign(&mut self, other: i8)

Implementors§