Skip to main content

BitIterable

Trait BitIterable 

Source
pub trait BitIterable:
    GetBit<Lsb0>
    + GetBit<Msb0>
    + BitLength { }
Expand description

A type whose bits can be iterated over.

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.

Implementations on Foreign Types§

Source§

impl BitIterable for bool

Source§

impl BitIterable for i8

Source§

impl BitIterable for i16

Source§

impl BitIterable for i32

Source§

impl BitIterable for i64

Source§

impl BitIterable for i128

Source§

impl BitIterable for isize

Source§

impl BitIterable for u8

Source§

impl BitIterable for u16

Source§

impl BitIterable for u32

Source§

impl BitIterable for u64

Source§

impl BitIterable for u128

Source§

impl BitIterable for usize

Source§

impl<T> BitIterable for &T
where T: BitIterable + ?Sized,

Implementors§