pub(crate) trait PlatformState {
    fn start_processing(&self) -> bool;
    fn waker_ref(&self) -> WakerRef<'_>;
    fn wait(&self, timeout: Option<Duration>) -> Result<()>;
}

Required Methods

Implementations on Foreign Types

Implementors