[][src]Struct ytesrev::solid::Solid

pub struct Solid {
    pub color: Color,
    // some fields omitted
}

A solid, fillid with a color

Fields

color: Color

The color

Methods

impl Solid[src]

pub fn new_sdl2(color: Color) -> Solid[src]

Create a Solid from an sdl2 color

pub fn new_rgba(r: u8, g: u8, b: u8, a: u8) -> Solid[src]

Create a Solid from a rgba values

Trait Implementations

impl Drawable for Solid[src]

fn register(&mut self)[src]

Register all content. This is mostly just used by [LatexObj]s, that need to be registered before loaded. Read more

fn load(&mut self)[src]

Load all content

fn event(&mut self, e: Event)[src]

When any event occurs

fn update(&mut self, dt: f64)[src]

Tick the object

Auto Trait Implementations

impl Send for Solid

impl Unpin for Solid

impl Sync for Solid

impl UnwindSafe for Solid

impl RefUnwindSafe for Solid

Blanket Implementations

impl<T> Layerable for T where
    T: Drawable
[src]

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

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,