[][src]Trait theon::IntoItems

pub trait IntoItems: Composite {
    type Output: IntoIterator<Item = Self::Item>;
    fn into_items(self) -> Self::Output;
}

Associated Types

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

Loading content...

Required methods

fn into_items(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<T> IntoItems for Vector2<T>[src]

type Output = ArrayVec<[T; 2]>

impl<T> IntoItems for Vector3<T>[src]

type Output = ArrayVec<[T; 3]>

impl<T> IntoItems for Point2<T>[src]

type Output = ArrayVec<[T; 2]>

impl<T> IntoItems for Point3<T>[src]

type Output = ArrayVec<[T; 3]>

impl<T> IntoItems for Vector2<T>[src]

type Output = ArrayVec<[T; 2]>

impl<T> IntoItems for Vector3<T>[src]

type Output = ArrayVec<[T; 3]>

impl<T> IntoItems for Vector2<T> where
    T: Scalar
[src]

type Output = ArrayVec<[T; 2]>

impl<T> IntoItems for Vector3<T> where
    T: Scalar
[src]

type Output = ArrayVec<[T; 3]>

impl<T> IntoItems for Point2<T> where
    T: Scalar
[src]

type Output = ArrayVec<[T; 2]>

impl<T> IntoItems for Point3<T> where
    T: Scalar
[src]

type Output = ArrayVec<[T; 3]>

impl<T> IntoItems for (T, T)[src]

type Output = ArrayVec<[T; 2]>

impl<T> IntoItems for (T, T, T)[src]

type Output = ArrayVec<[T; 3]>

Loading content...

Implementors

Loading content...