logo
pub trait IntoItems: Adjunct {
    type Output: IntoIterator<Item = Self::Item>;

    fn into_items(self) -> Self::Output;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors