HasBitXor

Trait HasBitXor 

Source
pub trait HasBitXor<O, A> {
    // Required method
    fn bitxor(lhs_type: O, rhs_type: O) -> (O, A);
}
Expand description

Vars can be XORed when the underlying signature has an operation for ‘xor’.

Required Methods§

Source

fn bitxor(lhs_type: O, rhs_type: O) -> (O, A)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§