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.

Required Associated Types

Value.

Required Methods

Get the tick.

Get the value.

Convert into a TickValue.

Implementors