[][src]Struct ytesrev::empty::Empty

pub struct Empty;

An object that contains nothing and doesn't display anything.

This is not very useful on it's own, but when used together with a WithSize-wrapper, it can act as a breaker in a Stack.

Trait Implementations

impl Drawable for Empty[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 Sync for Empty

impl Unpin for Empty

impl Send for Empty

impl RefUnwindSafe for Empty

impl UnwindSafe for Empty

Blanket Implementations

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

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