Trait LogicOps

Source
pub trait LogicOps:
    Sized
    + Not
    + BitAnd
    + BitOr
    + BitXor { }
Expand description

Binary logic operations for logic types such as bool or Logic3.

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§

Source§

impl<T> LogicOps for T
where T: Sized + Not + BitAnd + BitOr + BitXor,