Trait orx_split_vec::prelude::IntoFragments

source ·
pub trait IntoFragments<T> {
    // Required method
    fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>;
}
Expand description

Converts self into a collection of Fragments.

Required Methods§

source

fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>

Converts self into a collection of Fragments.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> IntoFragments<T> for Vec<Vec<T>>

source§

fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>

source§

impl<T> IntoFragments<T> for Vec<T>

source§

fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>

source§

impl<T, const N: usize> IntoFragments<T> for [Vec<T>; N]

source§

fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>

Implementors§

source§

impl<T, G: Growth> IntoFragments<T> for SplitVec<T, G>