referrerpolicy=no-referrer-when-downgrade

Trait polkadot_service::runtime_traits::SimpleBitOps

source ·
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§

source§

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