pub trait PollClient {
    fn request<T: From<Reply>>(
        &mut self,
        req: impl Into<Request>
    ) -> ClientResult<'_, T, Self>;
fn poll(&mut self) -> Poll<Result<Reply, Error>>;
fn syscall(&mut self); }
Expand description

Lowest level interface, use one of the higher level ones.

Required methods

Implementors