[][src]Enum nannou::draw::properties::primitive::Primitive

pub enum Primitive<S = Default> {
    Ellipse(Ellipse<S>),
    Line(Line<S>),
    MeshVertexless(Vertexless),
    Mesh(Mesh<S>),
    PolygonPointless(Pointless),
    PolygonFill(Polygon<Fill, S>),
    PolygonColorPerVertex(Polygon<PerVertex, S>),
    PolylineVertexless(Vertexless),
    Polyline(Polyline<S>),
    Quad(Quad<S>),
    Rect(Rect<S>),
    Tri(Tri<S>),
}

A wrapper around all primitive sets of properties so that they may be stored within the Draw's drawing field while they are being drawn.

This also allows us to flush all pending drawings to the mesh if Draw::to_frame is called before their respective Drawing types are dropped.

Variants

Ellipse(Ellipse<S>)Line(Line<S>)MeshVertexless(Vertexless)Mesh(Mesh<S>)PolygonPointless(Pointless)PolygonFill(Polygon<Fill, S>)PolygonColorPerVertex(Polygon<PerVertex, S>)PolylineVertexless(Vertexless)Polyline(Polyline<S>)Quad(Quad<S>)Rect(Rect<S>)Tri(Tri<S>)

Trait Implementations

impl<S> From<Ellipse<S>> for Primitive<S>[src]

impl<S> From<Line<S>> for Primitive<S>[src]

impl<S> From<Vertexless> for Primitive<S>[src]

impl<S> From<Mesh<S>> for Primitive<S>[src]

impl<S> From<Pointless> for Primitive<S>[src]

impl<S> From<Polygon<Fill, S>> for Primitive<S>[src]

impl<S> From<Polygon<PerVertex, S>> for Primitive<S>[src]

impl<S> From<Vertexless> for Primitive<S>[src]

impl<S> From<Polyline<S>> for Primitive<S>[src]

impl<S> From<Quad<S>> for Primitive<S>[src]

impl<S> From<Rect<S>> for Primitive<S>[src]

impl<S> From<Tri<S>> for Primitive<S>[src]

impl<S: Clone> Clone for Primitive<S>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<S> Into<Option<Ellipse<S>>> for Primitive<S>[src]

impl<S> Into<Option<Line<S>>> for Primitive<S>[src]

impl<S> Into<Option<Vertexless>> for Primitive<S>[src]

impl<S> Into<Option<Mesh<S>>> for Primitive<S>[src]

impl<S> Into<Option<Pointless>> for Primitive<S>[src]

impl<S> Into<Option<Polygon<Fill, S>>> for Primitive<S>[src]

impl<S> Into<Option<Polygon<PerVertex, S>>> for Primitive<S>[src]

impl<S> Into<Option<Vertexless>> for Primitive<S>[src]

impl<S> Into<Option<Polyline<S>>> for Primitive<S>[src]

impl<S> Into<Option<Quad<S>>> for Primitive<S>[src]

impl<S> Into<Option<Rect<S>>> for Primitive<S>[src]

impl<S> Into<Option<Tri<S>>> for Primitive<S>[src]

impl<S: Debug> Debug for Primitive<S>[src]

Auto Trait Implementations

impl<S> Send for Primitive<S> where
    S: Send

impl<S> Sync for Primitive<S> where
    S: Sync

Blanket Implementations

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Content for T[src]

impl<T> SafeBorrow<T> for T[src]

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.