Trait const_ops::BitXor

source ·
pub trait BitXor<Rhs = Self> {
    type Output;

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl BitXor<i32> for i32

§

type Output = i32

source§

const fn bitxor(self, other: i32) -> i32

source§

impl BitXor<i64> for i64

§

type Output = i64

source§

const fn bitxor(self, other: i64) -> i64

source§

impl BitXor<u16> for u16

§

type Output = u16

source§

const fn bitxor(self, other: u16) -> u16

source§

impl BitXor<isize> for isize

§

type Output = isize

source§

const fn bitxor(self, other: isize) -> isize

source§

impl BitXor<i16> for i16

§

type Output = i16

source§

const fn bitxor(self, other: i16) -> i16

source§

impl BitXor<u32> for u32

§

type Output = u32

source§

const fn bitxor(self, other: u32) -> u32

source§

impl BitXor<i128> for i128

§

type Output = i128

source§

const fn bitxor(self, other: i128) -> i128

source§

impl BitXor<u8> for u8

§

type Output = u8

source§

const fn bitxor(self, other: u8) -> u8

source§

impl BitXor<u128> for u128

§

type Output = u128

source§

const fn bitxor(self, other: u128) -> u128

source§

impl BitXor<i8> for i8

§

type Output = i8

source§

const fn bitxor(self, other: i8) -> i8

source§

impl BitXor<u64> for u64

§

type Output = u64

source§

const fn bitxor(self, other: u64) -> u64

source§

impl BitXor<bool> for bool

§

type Output = bool

source§

const fn bitxor(self, other: bool) -> bool

source§

impl BitXor<usize> for usize

§

type Output = usize

source§

const fn bitxor(self, other: usize) -> usize

Implementors§