Type

Trait Type 

Source
pub trait Type: Debug + Writeable {
    // Required method
    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§

Source

fn type_id(&self) -> u16

Returns the type identifying the message payload.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Type for Infallible

Source§

fn type_id(&self) -> u16

Implementors§

Source§

impl<T: Encode + Debug + Writeable> Type for T