Trait BitFieldAble

Source
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.

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> BitFieldAble for T
where T: Num + Copy + Zeroable + Eq + BitAnd<Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + Not<Output = Self>,