[][src]Struct rle_bitset::RLE

pub struct RLE<'a> { /* fields omitted */ }

An iterator over run lengths of bits.

Implementations

impl<'a> RLE<'a>[src]

pub fn new<R: RangeBounds<usize>>(
    storage: &'a [usize],
    range: R
) -> Result<RLE<'a>, OutOfRange>
[src]

Creates a new [$crate::RLE] iterating over the provided slice's bits in the given range.

Trait Implementations

impl<'a> Debug for RLE<'a>[src]

impl<'a> Iterator for RLE<'a>[src]

type Item = RL

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a> RefUnwindSafe for RLE<'a>

impl<'a> Send for RLE<'a>

impl<'a> Sync for RLE<'a>

impl<'a> Unpin for RLE<'a>

impl<'a> UnwindSafe for RLE<'a>

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