Trait genio::error::IntoIntrError [] [src]

pub trait IntoIntrError {
    type NonIntr;
    fn into_intr_error(self) -> IntrError<Self::NonIntr>;
}

Trait for custom error types that can also represent interruption.

Associated Types

Type representing other error (non-interrupt).

Required Methods

Performs the conversion.

Implementors