pub trait Host: Send {
// Required method
fn send(
&mut self,
c: Resource<Client>,
topic: Topic,
message: Resource<Message>,
) -> impl Future<Output = Result<Result<(), Error>>> + Send;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.