Skip to main content

IntoItems

Trait IntoItems 

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

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

Required Associated Types§

Source

type Output: IntoIterator<Item = Self::Item>

Required Methods§

Source

fn into_items(self) -> Self::Output

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> IntoItems for (T, T)

Source§

impl<T> IntoItems for (T, T, T)

Source§

impl<T> IntoItems for Point2<T>

Source§

impl<T> IntoItems for Point2<T>
where T: Scalar,

Source§

impl<T> IntoItems for Point3<T>

Source§

impl<T> IntoItems for Point3<T>
where T: Scalar,

Source§

impl<T> IntoItems for Vector2<T>

Source§

impl<T> IntoItems for Vector2<T>

Source§

impl<T> IntoItems for Vector2<T>
where T: Scalar,

Source§

impl<T> IntoItems for Vector3<T>

Source§

impl<T> IntoItems for Vector3<T>

Source§

impl<T> IntoItems for Vector3<T>
where T: Scalar,

Implementors§