Struct Iter
struct Iter<'a, B: 'a = u32> { ... }
An iterator for BitVec.
Implementations
impl<'a, B> Freeze for Iter<'a, B>
impl<'a, B> RefUnwindSafe for Iter<'a, B>
impl<'a, B> Send for Iter<'a, B>
impl<'a, B> Sync for Iter<'a, B>
impl<'a, B> Unpin for Iter<'a, B>
impl<'a, B> UnsafeUnpin for Iter<'a, B>
impl<'a, B> UnwindSafe for Iter<'a, B>
impl<'a, B: $crate::clone::Clone + 'a> Clone for Iter<'a, B>
fn clone(self: &Self) -> Iter<'a, B>
impl<'a, B: BitBlock> DoubleEndedIterator for Iter<'a, B>
fn next_back(self: &mut Self) -> Option<bool>
impl<'a, B: BitBlock> ExactSizeIterator for Iter<'a, B>
impl<'a, B: BitBlock> Iterator for Iter<'a, B>
fn next(self: &mut Self) -> Option<bool>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<I> IntoIterator for Iter<'a, B>
fn into_iter(self: Self) -> I
impl<T> Any for Iter<'a, B>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Iter<'a, B>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Iter<'a, B>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Iter<'a, B>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Iter<'a, B>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Iter<'a, B>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Iter<'a, B>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Iter<'a, B>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Iter<'a, B>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>