Enum implot::Marker[][src]

#[repr(i32)]pub enum Marker {
    None,
    Circle,
    Square,
    Diamond,
    Up,
    Down,
    Left,
    Right,
    Cross,
    Plus,
    Asterisk,
}

Markers, documentation copied from implot.h for convenience.

Variants

None

no marker

Circle

a circle marker will be rendered at each point

Square

a square maker will be rendered at each point

Diamond

a diamond marker will be rendered at each point

Up

an upward-pointing triangle marker will up rendered at each point

Down

an downward-pointing triangle marker will up rendered at each point

Left

an leftward-pointing triangle marker will up rendered at each point

Right

an rightward-pointing triangle marker will up rendered at each point

Cross

a cross marker will be rendered at each point (not filled)

Plus

a plus marker will be rendered at each point (not filled)

Asterisk

a asterisk marker will be rendered at each point (not filled)

Trait Implementations

impl Clone for Marker[src]

impl Copy for Marker[src]

impl Debug for Marker[src]

Auto Trait Implementations

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