Host

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§

Source

fn send( &mut self, c: Resource<Client>, topic: Topic, message: Resource<Message>, ) -> impl Future<Output = Result<Result<(), Error>>> + Send

Sends the message using the given client.

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.

Implementations on Foreign Types§

Source§

impl<_T: Host + ?Sized + Send> Host for &mut _T

Source§

fn send( &mut self, c: Resource<Client>, topic: Topic, message: Resource<Message>, ) -> impl Future<Output = Result<Result<(), Error>>> + Send

Sends the message using the given client.

Implementors§

Source§

impl<H> Host for Ctx<H>
where H: Handler,