Struct Blocks

struct Blocks<'a, B: 'a> { ... }

An iterator over the blocks of a BitVec.

Implementations

impl<'a, B> Freeze for Blocks<'a, B>

impl<'a, B> RefUnwindSafe for Blocks<'a, B>

impl<'a, B> Send for Blocks<'a, B>

impl<'a, B> Sync for Blocks<'a, B>

impl<'a, B> Unpin for Blocks<'a, B>

impl<'a, B> UnsafeUnpin for Blocks<'a, B>

impl<'a, B> UnwindSafe for Blocks<'a, B>

impl<'a, B: $crate::clone::Clone + 'a> Clone for Blocks<'a, B>

fn clone(self: &Self) -> Blocks<'a, B>

impl<'a, B: BitBlock> DoubleEndedIterator for Blocks<'a, B>

fn next_back(self: &mut Self) -> Option<B>

impl<'a, B: BitBlock> ExactSizeIterator for Blocks<'a, B>

impl<'a, B: BitBlock> Iterator for Blocks<'a, B>

fn next(self: &mut Self) -> Option<B>
fn size_hint(self: &Self) -> (usize, Option<usize>)

impl<I> IntoIterator for Blocks<'a, B>

fn into_iter(self: Self) -> I

impl<T> Any for Blocks<'a, B>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Blocks<'a, B>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for Blocks<'a, B>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for Blocks<'a, B>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for Blocks<'a, B>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for Blocks<'a, B>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for Blocks<'a, B>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for Blocks<'a, B>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for Blocks<'a, B>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>