[][src]Enum pushrod::render::widget_config::Config

pub enum Config {
    Points(Points),
    Size(Size),
    Color(Color),
    Numeric(i32),
    Text(String),
    Toggle(bool),
    CompassPosition(CompassPosition),
    PaddingConstraint(PaddingConstraint),
}

Configuration object type - allows configurations to be set using Piston, Pushrod, or native types.

Variants

Points(Points)

This stores a Points type.

Size(Size)

This stores a Size type.

Color(Color)

This stores a Color.

Numeric(i32)

This stores a numeric value in the form of an i32 value.

Text(String)

This stores a String of text.

Toggle(bool)

This stores a true/false boolean flag.

CompassPosition(CompassPosition)

This stores a ComapssPosition.

PaddingConstraint(PaddingConstraint)

This stores a PaddingConstraint.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

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.