pub trait NonBlockingResult {
type Result;
// Required method
fn no_block(self) -> Self::Result;
}
Expand description
Non-blocking IO wrapper.
This trait is implemented for Result<T, E: NonBlockingError>
.
pub trait NonBlockingResult {
type Result;
// Required method
fn no_block(self) -> Self::Result;
}
Non-blocking IO wrapper.
This trait is implemented for Result<T, E: NonBlockingError>
.