[][src]Trait verify::ErrorExt

pub trait ErrorExt: Sized {
    fn combine(&mut self, span: Self);
}

Convenience trait for interacting with errors.

Required methods

fn combine(&mut self, span: Self)

Combine two error-like types. It is useful for spans wrapped in Options.

Loading content...

Implementations on Foreign Types

impl<T: Error> ErrorExt for Option<T>[src]

Loading content...

Implementors

impl<T: Error> ErrorExt for T[src]

Loading content...