Struct pasture_core::containers::attr2::AttributeIteratorByRef[][src]

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

Implementations

impl<'a, T1: PrimitiveType, T2: PrimitiveType> AttributeIteratorByRef<'a, T1, T2>[src]

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

Trait Implementations

impl<'a, T1: PrimitiveType, T2: PrimitiveType> Iterator for AttributeIteratorByRef<'a, T1, T2>[src]

type Item = (&'a T1, &'a T2)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T1, T2> RefUnwindSafe for AttributeIteratorByRef<'a, T1, T2> where
    T1: RefUnwindSafe,
    T2: RefUnwindSafe

impl<'a, T1, T2> Send for AttributeIteratorByRef<'a, T1, T2> where
    T1: Sync,
    T2: Sync

impl<'a, T1, T2> Sync for AttributeIteratorByRef<'a, T1, T2> where
    T1: Sync,
    T2: Sync

impl<'a, T1, T2> Unpin for AttributeIteratorByRef<'a, T1, T2>

impl<'a, T1, T2> UnwindSafe for AttributeIteratorByRef<'a, T1, T2> where
    T1: RefUnwindSafe,
    T2: RefUnwindSafe

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>,