Trait elfo::Message[][src]

pub trait Message: Debug + Clone + Any + Send + Serialize + for<'de> Deserialize<'de> {
    const PROTOCOL: &'static str;
    const NAME: &'static str;
}

Associated Constants

A protocol’s name. Usually, it’s a crate name where the message is defined.

Just a message’s name.

Implementations on Foreign Types

Implementors