pub trait TimeTagged { // Required methods fn epoch(&self) -> Epoch; fn set_epoch(&mut self, epoch: Epoch); }
A trait allowing for something to have an epoch
Retrieve the Epoch
Set the Epoch