pub trait Message: Display + Send + Sync {
    fn timestamp(&self) -> &DateTime;
}

Required Methods

Implementors