Trait indicator::window::tickable::Tickable[][src]

pub trait Tickable {
    type Value;
    fn tick(&self) -> &Tick;
fn value(&self) -> &Self::Value;
fn into_tick_value(self) -> TickValue<Self::Value>; }
Expand description

Type that has tick.

Associated Types

Value.

Required methods

Get the tick.

Get the value.

Convert into a TickValue.

Implementors