Reply

Trait Reply 

Source
pub trait Reply {
    type Output;

    // Required method
    async fn recv(self) -> Result<Self::Output>;
}

Required Associated Types§

Required Methods§

Source

async fn recv(self) -> Result<Self::Output>

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.

Implementors§