pub trait BitFieldAble: Num + Copy + Zeroable + Eq + BitAnd<Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + Not<Output = Self> { }
Available on crate feature alloc only.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> BitFieldAble for T
where T: Num + Copy + Zeroable + Eq + BitAnd<Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + Not<Output = Self>,