RemoteCall

Trait RemoteCall 

Source
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.

Required Associated Types§

Source

type Return: Deserializable

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

Implementors§