pub trait NonBlockingError: Sized {
    fn into_non_blocking(self) -> Option<Self>;
}
Expand description

Non-blocking IO handling.

Required Methods

Convert WouldBlock to None and don’t touch other errors.

Implementations on Foreign Types

Implementors