pub trait RpcMessage: Serialize + DeserializeOwned + 'static + Sync + Send {
    type Item: Serialize + DeserializeOwned + 'static + Sync + Send;
    type Error: Serialize + DeserializeOwned + 'static + Sync + Send + Debug;

    const ID: &'static str;
}

Required Associated Types§

Required Associated Constants§

source

const ID: &'static str

Object Safety§

This trait is not object safe.

Implementors§