pub struct Located<I, E> { /* private fields */ }
Expand description
An internal type used to facilitate error prioritisation. You shouldn’t need to interact with this type during normal use of the crate.
Implementations
sourceimpl<I, E: Error<I>> Located<I, E>
impl<I, E: Error<I>> Located<I, E>
Auto Trait Implementations
impl<I, E> RefUnwindSafe for Located<I, E> where
E: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, E> Send for Located<I, E> where
E: Send,
I: Send,
impl<I, E> Sync for Located<I, E> where
E: Sync,
I: Sync,
impl<I, E> Unpin for Located<I, E> where
E: Unpin,
I: Unpin,
impl<I, E> UnwindSafe for Located<I, E> where
E: UnwindSafe,
I: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more