Trait const_ops::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<i16> for i16

§

type Output = i16

source§

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

source§

impl BitOr<u16> for u16

§

type Output = u16

source§

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

source§

impl BitOr<usize> for usize

§

type Output = usize

source§

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

source§

impl BitOr<bool> for bool

§

type Output = bool

source§

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

source§

impl BitOr<u64> for u64

§

type Output = u64

source§

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

source§

impl BitOr<isize> for isize

§

type Output = isize

source§

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

source§

impl BitOr<i128> for i128

§

type Output = i128

source§

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

source§

impl BitOr<u128> for u128

§

type Output = u128

source§

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

source§

impl BitOr<i64> for i64

§

type Output = i64

source§

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

source§

impl BitOr<i8> for i8

§

type Output = i8

source§

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

source§

impl BitOr<i32> for i32

§

type Output = i32

source§

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

source§

impl BitOr<u8> for u8

§

type Output = u8

source§

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

source§

impl BitOr<u32> for u32

§

type Output = u32

source§

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

Implementors§