Struct bitvec::array::IntoIter[][src]

pub struct IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
{ /* fields omitted */ }

A by-value bit-array iterator.

Original

array::IntoIter

Implementations

impl<O, V> IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

pub fn as_bitslice(&self) -> &BitSlice<O, V::Store>

Notable traits for &'a BitSlice<O, T>

impl<'a, O, T> Read for &'a BitSlice<O, T> where
    O: BitOrder,
    T: BitStore,
    BitSlice<O, T>: BitField
impl<'a, O, T> Write for &'a mut BitSlice<O, T> where
    O: BitOrder,
    T: BitStore,
    BitSlice<O, T>: BitField
[src]

Returns an immutable slice of all bits that have not been yielded yet.

Original

IntoIter::as_slice

pub fn as_mut_bitslice(&mut self) -> &mut BitSlice<O, V::Store>

Notable traits for &'a BitSlice<O, T>

impl<'a, O, T> Read for &'a BitSlice<O, T> where
    O: BitOrder,
    T: BitStore,
    BitSlice<O, T>: BitField
impl<'a, O, T> Write for &'a mut BitSlice<O, T> where
    O: BitOrder,
    T: BitStore,
    BitSlice<O, T>: BitField
[src]

Returns a mutable slice of all bits that have not been yielded yet.

Original

IntoIter::as_mut_slice

Trait Implementations

impl<O: Clone, V: Clone> Clone for IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

impl<O, V> Debug for IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

impl<O, V> DoubleEndedIterator for IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

impl<O, V> ExactSizeIterator for IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

impl<O, V> FusedIterator for IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

impl<O, V> Iterator for IntoIter<O, V> where
    O: BitOrder,
    V: BitViewSized
[src]

type Item = bool

The type of the elements being iterated over.

Auto Trait Implementations

impl<O, V> RefUnwindSafe for IntoIter<O, V> where
    O: RefUnwindSafe,
    V: RefUnwindSafe

impl<O, V> Send for IntoIter<O, V> where
    O: Send,
    V: Send

impl<O, V> Sync for IntoIter<O, V> where
    O: Sync,
    V: Sync

impl<O, V> Unpin for IntoIter<O, V>

impl<O, V> UnwindSafe for IntoIter<O, V> where
    O: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T[src]

impl<T> FmtForward for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Pipe for T where
    T: ?Sized
[src]

impl<T> Tap for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.