Trait gclient::ext::sp_runtime::traits::SimpleBitOps

pub trait SimpleBitOps:
    Sized
    + Clear
    + BitOr<Output = Self>
    + BitXor<Output = Self>
    + BitAnd<Output = Self> { }
Expand description

A meta trait for all bit ops.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> SimpleBitOps for T
where T: BitXor<Output = T> + Clear + BitAnd<Output = T> + BitOr<Output = T>,