Trait raf::Tick[][src]

pub trait Tick: 'static {
    fn tick(&mut self);
}
Expand description

A value which can be mutably called by the scheduler.

Required methods

Tick this value, indicating a new frame request is being fulfilled.

Implementors