BitXor

Trait 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 for bool

Source§

type Output = bool

Source§

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

Source§

impl BitXor for i8

Source§

type Output = i8

Source§

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

Source§

impl BitXor for i16

Source§

type Output = i16

Source§

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

Source§

impl BitXor for i32

Source§

type Output = i32

Source§

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

Source§

impl BitXor for i64

Source§

type Output = i64

Source§

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

Source§

impl BitXor for i128

Source§

type Output = i128

Source§

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

Source§

impl BitXor for isize

Source§

type Output = isize

Source§

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

Source§

impl BitXor for u8

Source§

type Output = u8

Source§

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

Source§

impl BitXor for u16

Source§

type Output = u16

Source§

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

Source§

impl BitXor for u32

Source§

type Output = u32

Source§

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

Source§

impl BitXor for u64

Source§

type Output = u64

Source§

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

Source§

impl BitXor for u128

Source§

type Output = u128

Source§

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

Source§

impl BitXor for usize

Source§

type Output = usize

Source§

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

Implementors§