Trait rbatis_codegen::ops::BitOr

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

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

Required Associated Types§

source

type Output

The resulting type after applying the | operator.

Required Methods§

source

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

Performs the | operation.

Examples
assert_eq!(true | false, true);
assert_eq!(false | false, false);
assert_eq!(5u8 | 1u8, 5);
assert_eq!(5u8 | 2u8, 7);

Implementations on Foreign Types§

source§

impl BitOr for Value

§

type Output = bool

source§

fn op_bitor(self, rhs: Self) -> Self::Output

source§

impl BitOr<&&Value> for &Value

§

type Output = bool

source§

fn op_bitor(self, rhs: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for Value

§

type Output = bool

source§

fn op_bitor(self, rhs: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for bool

§

type Output = bool

source§

fn op_bitor(self, rhs: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for i8

§

type Output = i64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for i16

§

type Output = i64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for i32

§

type Output = i64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for i64

§

type Output = i64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for isize

§

type Output = i64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for u8

§

type Output = u64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for u16

§

type Output = u64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for u32

§

type Output = u64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&&Value> for u64

§

type Output = u64

source§

fn op_bitor(self, other: &&Value) -> Self::Output

source§

impl BitOr<&Value> for &Value

§

type Output = bool

source§

fn op_bitor(self, rhs: &Value) -> Self::Output

source§

impl BitOr<&Value> for Value

§

type Output = bool

source§

fn op_bitor(self, rhs: &Value) -> Self::Output

source§

impl BitOr<&Value> for bool

§

type Output = bool

source§

fn op_bitor(self, rhs: &Value) -> Self::Output

source§

impl BitOr<&Value> for i8

§

type Output = i64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for i16

§

type Output = i64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for i32

§

type Output = i64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for i64

§

type Output = i64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for isize

§

type Output = i64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for u8

§

type Output = u64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for u16

§

type Output = u64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for u32

§

type Output = u64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&Value> for u64

§

type Output = u64

source§

fn op_bitor(self, other: &Value) -> Self::Output

source§

impl BitOr<&i8> for Value

§

type Output = i64

source§

fn op_bitor(self, other: &i8) -> Self::Output

source§

impl BitOr<&i16> for Value

§

type Output = i64

source§

fn op_bitor(self, other: &i16) -> Self::Output

source§

impl BitOr<&i32> for Value

§

type Output = i64

source§

fn op_bitor(self, other: &i32) -> Self::Output

source§

impl BitOr<&i64> for Value

§

type Output = i64

source§

fn op_bitor(self, other: &i64) -> Self::Output

source§

impl BitOr<&isize> for Value

§

type Output = i64

source§

fn op_bitor(self, other: &isize) -> Self::Output

source§

impl BitOr<&u8> for Value

§

type Output = u64

source§

fn op_bitor(self, other: &u8) -> Self::Output

source§

impl BitOr<&u16> for Value

§

type Output = u64

source§

fn op_bitor(self, other: &u16) -> Self::Output

source§

impl BitOr<&u32> for Value

§

type Output = u64

source§

fn op_bitor(self, other: &u32) -> Self::Output

source§

impl BitOr<&u64> for Value

§

type Output = u64

source§

fn op_bitor(self, other: &u64) -> Self::Output

source§

impl BitOr<Value> for &Value

§

type Output = bool

source§

fn op_bitor(self, rhs: Value) -> Self::Output

source§

impl BitOr<Value> for bool

§

type Output = bool

source§

fn op_bitor(self, rhs: Value) -> Self::Output

source§

impl BitOr<Value> for i8

§

type Output = i64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for i16

§

type Output = i64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for i32

§

type Output = i64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for i64

§

type Output = i64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for isize

§

type Output = i64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for u8

§

type Output = u64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for u16

§

type Output = u64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for u32

§

type Output = u64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<Value> for u64

§

type Output = u64

source§

fn op_bitor(self, other: Value) -> Self::Output

source§

impl BitOr<bool> for &Value

§

type Output = bool

source§

fn op_bitor(self, rhs: bool) -> Self::Output

source§

impl BitOr<i8> for Value

§

type Output = i64

source§

fn op_bitor(self, other: i8) -> Self::Output

source§

impl BitOr<i16> for Value

§

type Output = i64

source§

fn op_bitor(self, other: i16) -> Self::Output

source§

impl BitOr<i32> for Value

§

type Output = i64

source§

fn op_bitor(self, other: i32) -> Self::Output

source§

impl BitOr<i64> for Value

§

type Output = i64

source§

fn op_bitor(self, other: i64) -> Self::Output

source§

impl BitOr<isize> for Value

§

type Output = i64

source§

fn op_bitor(self, other: isize) -> Self::Output

source§

impl BitOr<u8> for Value

§

type Output = u64

source§

fn op_bitor(self, other: u8) -> Self::Output

source§

impl BitOr<u16> for Value

§

type Output = u64

source§

fn op_bitor(self, other: u16) -> Self::Output

source§

impl BitOr<u32> for Value

§

type Output = u64

source§

fn op_bitor(self, other: u32) -> Self::Output

source§

impl BitOr<u64> for Value

§

type Output = u64

source§

fn op_bitor(self, other: u64) -> Self::Output

source§

impl<'a> BitOr<&i8> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: &i8) -> Self::Output

source§

impl<'a> BitOr<&i16> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: &i16) -> Self::Output

source§

impl<'a> BitOr<&i32> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: &i32) -> Self::Output

source§

impl<'a> BitOr<&i64> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: &i64) -> Self::Output

source§

impl<'a> BitOr<&isize> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: &isize) -> Self::Output

source§

impl<'a> BitOr<&u8> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: &u8) -> Self::Output

source§

impl<'a> BitOr<&u16> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: &u16) -> Self::Output

source§

impl<'a> BitOr<&u32> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: &u32) -> Self::Output

source§

impl<'a> BitOr<&u64> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: &u64) -> Self::Output

source§

impl<'a> BitOr<i8> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: i8) -> Self::Output

source§

impl<'a> BitOr<i16> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: i16) -> Self::Output

source§

impl<'a> BitOr<i32> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: i32) -> Self::Output

source§

impl<'a> BitOr<i64> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: i64) -> Self::Output

source§

impl<'a> BitOr<isize> for &'a Value

§

type Output = i64

source§

fn op_bitor(self, other: isize) -> Self::Output

source§

impl<'a> BitOr<u8> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: u8) -> Self::Output

source§

impl<'a> BitOr<u16> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: u16) -> Self::Output

source§

impl<'a> BitOr<u32> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: u32) -> Self::Output

source§

impl<'a> BitOr<u64> for &'a Value

§

type Output = u64

source§

fn op_bitor(self, other: u64) -> Self::Output

Implementors§