Trait s2n_quic_tls::error::Pollable

source ·
pub trait Pollable {
    type Output;

    // Required method
    fn into_poll(self) -> Poll<Result<Self::Output, Error>>;
}

Required Associated Types§

Required Methods§

source

fn into_poll(self) -> Poll<Result<Self::Output, Error>>

Implementors§

source§

impl<T> Pollable for T
where T: Fallible,

§

type Output = <T as Fallible>::Output