Link

Trait Link 

Source
pub trait Link {
    type Platform: Platform + ?Sized;

    // Required methods
    fn instance(&self) -> &Rc<Instance<Self::Platform>>;
    fn memory(&self) -> &Memory;

    // Provided method
    fn queue_rerender(&self) { ... }
}

Required Associated Types§

Required Methods§

Source

fn instance(&self) -> &Rc<Instance<Self::Platform>>

Source

fn memory(&self) -> &Memory

Provided Methods§

Implementors§