pub trait CallMsg: Serialize + DeserializeOwned + Send + Sync { type Reply: Serialize + DeserializeOwned + Send + Sync; }
Trait for messages which expect exactly one reply.
The reply type expected for this message.