pub trait RemoteCall: Serializable {
    type Return: Deserializable;
}
Expand description

Structures implementing this trait indicate that they are suitable for use to perform Remote Procedure Calls (RPC), and know what the type of the response will be.

Associated Types

The type of the “return” value coming from the other end of the connection.

Implementors