[][src]Trait rttrust::io::error::IntoIntrError

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 NonIntr

Type representing other error (non-interrupt).

Loading content...

Required methods

fn into_intr_error(self) -> IntrError<Self::NonIntr>

Performs the conversion.

Loading content...

Implementors

impl<E> IntoIntrError for IntrError<E>[src]

Loading content...