pub struct Locate<E>{ /* private fields */ }Implementations§
Trait Implementations§
Source§impl<E> ErrorCompat for Locate<E>
impl<E> ErrorCompat for Locate<E>
Source§fn iter_chain(&self) -> ChainCompat<'_>where
Self: AsErrorSource,
fn iter_chain(&self) -> ChainCompat<'_>where
Self: AsErrorSource,
Returns an iterator for traversing the chain of errors,
starting with the current error
and continuing with recursive calls to
Error::source. Read moreAuto Trait Implementations§
impl<E> Freeze for Locate<E>where
E: Freeze,
impl<E> RefUnwindSafe for Locate<E>where
E: RefUnwindSafe,
impl<E> Send for Locate<E>where
E: Send,
impl<E> Sync for Locate<E>where
E: Sync,
impl<E> Unpin for Locate<E>where
E: Unpin,
impl<E> UnsafeUnpin for Locate<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for Locate<E>where
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
Source§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more