pub trait Type: Debug + Writeable {
    fn type_id(&self) -> u16;
}
Expand description

Defines a type identifier for sending messages over the wire.

Messages implementing this trait specify a type and must be Writeable.

Required methods

Returns the type identifying the message payload.

Implementations on Foreign Types

Implementors