WrapErr

Trait WrapErr 

Source
pub trait WrapErr<TResult> {
    // Required method
    fn wrap_err_to_err(self) -> LispResult<TResult>;
}

Required Methods§

Source

fn wrap_err_to_err(self) -> LispResult<TResult>

Implementations on Foreign Types§

Source§

impl<TResult, TError> WrapErr<TResult> for Result<TResult, TError>
where TError: Error + Send + 'static,

Source§

fn wrap_err_to_err(self) -> LispResult<TResult>

Implementors§