pub trait IntoAlienError<T> {
// Required method
fn into_alien_error(self) -> Result<T, AlienError<GenericError>>;
}Expand description
Extension trait for converting standard errors to AlienError
Required Methods§
Sourcefn into_alien_error(self) -> Result<T, AlienError<GenericError>>
fn into_alien_error(self) -> Result<T, AlienError<GenericError>>
Convert a standard error result into an AlienError result