HasBitAnd

Trait HasBitAnd 

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

Vars support this operator when the underlying signature has the appropriate operation.

Required Methods§

Source

fn bitand(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§