Struct pasture_core::containers::attr3::AttributeIteratorByValueWithConversion[][src]

pub struct AttributeIteratorByValueWithConversion<'a, T1: PrimitiveType, T2: PrimitiveType, T3: PrimitiveType> { /* fields omitted */ }

Implementations

impl<'a, T1: PrimitiveType + Default, T2: PrimitiveType + Default, T3: PrimitiveType + Default> AttributeIteratorByValueWithConversion<'a, T1, T2, T3>[src]

pub fn new(
    buffer: &'a dyn PointBuffer,
    attributes: [&'a PointAttributeDefinition; 3]
) -> Self
[src]

Trait Implementations

impl<'a, T1: PrimitiveType + Default, T2: PrimitiveType + Default, T3: PrimitiveType + Default> Iterator for AttributeIteratorByValueWithConversion<'a, T1, T2, T3>[src]

type Item = (T1, T2, T3)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T1, T2, T3> !RefUnwindSafe for AttributeIteratorByValueWithConversion<'a, T1, T2, T3>

impl<'a, T1, T2, T3> !Send for AttributeIteratorByValueWithConversion<'a, T1, T2, T3>

impl<'a, T1, T2, T3> !Sync for AttributeIteratorByValueWithConversion<'a, T1, T2, T3>

impl<'a, T1, T2, T3> Unpin for AttributeIteratorByValueWithConversion<'a, T1, T2, T3> where
    T1: Unpin,
    T2: Unpin,
    T3: Unpin

impl<'a, T1, T2, T3> !UnwindSafe for AttributeIteratorByValueWithConversion<'a, T1, T2, T3>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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<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<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,