pub trait FromMessage<A, B>: Sized {
    fn from_message(msg: Message<A, B>) -> Result<Self, MessageError>;
}

Required Methods§

Implementors§