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

pub enum Primitive<S = Default> {
    Ellipse(Ellipse<S>),
    Line(Line<S>),
    MeshVertexless(Vertexless),
    Mesh(Mesh<S>),
    PathInit(PathInit<S>),
    PathFill(PathFill<S>),
    PathStroke(PathStroke<S>),
    Path(Path<S>),
    PolygonInit(PolygonInit<S>),
    Polygon(Polygon<S>),
    Quad(Quad<S>),
    Rect(Rect<S>),
    Text(Text<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>)
PathInit(PathInit<S>)
PathFill(PathFill<S>)
PathStroke(PathStroke<S>)
Path(Path<S>)
PolygonInit(PolygonInit<S>)
Polygon(Polygon<S>)
Quad(Quad<S>)
Rect(Rect<S>)
Text(Text<S>)
Tri(Tri<S>)

Trait Implementations

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<PathInit<S>>> for Primitive<S>[src]

impl<S> Into<Option<PathOptions<FillOptions, S>>> for Primitive<S>[src]

impl<S> Into<Option<PathOptions<StrokeOptions, S>>> for Primitive<S>[src]

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

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

impl<S> Into<Option<Polygon<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<Text<S>>> for Primitive<S>[src]

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

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

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<PathInit<S>> for Primitive<S>[src]

impl<S> From<PathOptions<StrokeOptions, S>> for Primitive<S>[src]

impl<S> From<PathOptions<FillOptions, S>> for Primitive<S>[src]

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

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

impl<S> From<Polygon<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<Text<S>> for Primitive<S>[src]

impl<S> From<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> Unpin for Primitive<S> where
    S: Unpin

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

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

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

Blanket Implementations

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

impl<T> Borrow<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<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> SetParameter for T

impl<T> SetParameter for T

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