[][src]Struct nannou::mesh::RawVertices

pub struct RawVertices<M> { /* fields omitted */ }

An iterator yielding the raw vertices (with combined channels) of a mesh.

Requires that the mesh implements GetVertex.

Returns None when the inner mesh first returns None for a call to GetVertex::get_vertex.

Methods

impl<M> RawVertices<M>[src]

pub fn range(self, range: Range<usize>) -> Self[src]

Specify a range of raw vertices to yield.

Trait Implementations

impl<M: Clone> Clone for RawVertices<M>[src]

impl<M: Debug> Debug for RawVertices<M>[src]

impl<M> ExactSizeIterator for RawVertices<M> where
    M: GetVertex<usize>, 
[src]

impl<M> Iterator for RawVertices<M> where
    M: GetVertex<usize>, 
[src]

type Item = M::Vertex

The type of the elements being iterated over.

Auto Trait Implementations

impl<M> RefUnwindSafe for RawVertices<M> where
    M: RefUnwindSafe

impl<M> Send for RawVertices<M> where
    M: Send

impl<M> Sync for RawVertices<M> where
    M: Sync

impl<M> Unpin for RawVertices<M> where
    M: Unpin

impl<M> UnwindSafe for RawVertices<M> where
    M: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<N, E, I> ElementIterator<N, E> for I where
    I: Iterator<Item = Element<N, E>> + ?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<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> ParallelBridge for T where
    T: Send + Iterator,
    <T as Iterator>::Item: Send
[src]

impl<Iter> PathIterator for Iter where
    Iter: Iterator<Item = Event<Point2D<f32, UnknownUnit>, Point2D<f32, UnknownUnit>>>, 

impl<T> SetParameter for T

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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