pub trait MessageDestination {
    fn send(&self, message: &Message) -> Result<(), Box<dyn Error>>;
}

Required Methods

Implementors