Trait RemoteMessage

Source
pub trait RemoteMessage:
    Message
    + Named
    + Serialize
    + DeserializeOwned { }
Expand description

RemoteMessage extends Message by requiring that the messages also be serializable, and can thus traverse process boundaries. RemoteMessages must also specify a globally unique type name (a URI).

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.

Implementors§