Trait btrun::CallMsg

source ·
pub trait CallMsg: Serialize + DeserializeOwned + Send + Sync {
    type Reply: Serialize + DeserializeOwned + Send + Sync;
}
Expand description

Trait for messages which expect exactly one reply.

Required Associated Types§

source

type Reply: Serialize + DeserializeOwned + Send + Sync

The reply type expected for this message.

Implementors§