pub trait IntoIntrError {
type NonIntr;
// Required method
fn into_intr_error(self) -> IntrError<Self::NonIntr>;
}
Expand description
Trait for custom error types that can also represent interruption.
Required Associated Types§
Required Methods§
Sourcefn into_intr_error(self) -> IntrError<Self::NonIntr>
fn into_intr_error(self) -> IntrError<Self::NonIntr>
Performs the conversion.