[][src]Struct flatk::Chunks

pub struct Chunks<S> { /* fields omitted */ }

A generic version of the Chunks iterator used by slices. This is used by uniformly (but not statically) chunked collections.

Trait Implementations

impl<S> Iterator for Chunks<S> where
    S: SplitAt + Set + Dummy
[src]

type Item = S

The type of the elements being iterated over.

Auto Trait Implementations

impl<S> RefUnwindSafe for Chunks<S> where
    S: RefUnwindSafe

impl<S> Send for Chunks<S> where
    S: Send

impl<S> Sync for Chunks<S> where
    S: Sync

impl<S> Unpin for Chunks<S> where
    S: Unpin

impl<S> UnwindSafe for Chunks<S> where
    S: UnwindSafe

Blanket Implementations

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

impl<T> AsSlice<T> for T[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<'a, S, I> Get<'a, I> for S where
    I: GetIndex<'a, S>, 
[src]

type Output = <I as GetIndex<'a, S>>::Output

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<S, I> Isolate<I> for S where
    I: IsolateIndex<S>, 
[src]

type Output = <I as IsolateIndex<S>>::Output

impl<T> ParallelBridge for T where
    T: Send + Iterator,
    <T as Iterator>::Item: Send
[src]

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

type Output = T

Should always be Self

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.