pub trait MessageSpec {
    // Required methods
    fn message(&self) -> &Self;
    fn timestamp(&self) -> i64;
}

Required Methods§

source

fn message(&self) -> &Self

source

fn timestamp(&self) -> i64

Object Safety§

This trait is not object safe.

Implementors§