pub trait History<T, E: Copy + Debug>: Updatable<E> { // Required method fn get(&self, time: Time) -> Option<Datum<T>>; }
An object that can return a value, like a Getter, for a given time.
Getter
Get a value at a time.