pub trait Host {
    // Required method
    fn tick(&mut self);
}
Available on crate feature runtime and crate feature component-model and docsrs only.

Required Methods§

source

fn tick(&mut self)

Implementations on Foreign Types§

source§

impl<_T: Host + ?Sized> Host for &mut _T

source§

fn tick(&mut self)

Implementors§