Trait netapp::endpoint::Message[][src]

pub trait Message: Serialize + for<'de> Deserialize<'de> + Send + Sync {
    type Response: Serialize + for<'de> Deserialize<'de> + Send + Sync;
}
Expand description

This trait should be implemented by all messages your application wants to handle

Associated Types

Implementors