pub trait MessageData: Debug + Send + Sync {
    fn clone_message(&self) -> Box<dyn MessageData + 'static, Global>;
    fn as_any(&self) -> &(dyn Any + 'static);
}

Required Methods

Implementations on Foreign Types

Implementors