Trait Error2

Source
pub trait Error2: Error {
    // Required methods
    fn entry(&self) -> (&Locations, NextError<'_>);
    fn locations(&mut self) -> &mut Locations;
}

Required Methods§

Source

fn entry(&self) -> (&Locations, NextError<'_>)

Source

fn locations(&mut self) -> &mut Locations

Implementations on Foreign Types§

Source§

impl Error2 for Infallible

Source§

fn entry(&self) -> (&Locations, NextError<'_>)

Source§

fn locations(&mut self) -> &mut Locations

Source§

impl<T: Error2> Error2 for Box<T>

Source§

fn entry(&self) -> (&Locations, NextError<'_>)

Source§

fn locations(&mut self) -> &mut Locations

Implementors§