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§
Source§impl<I, E: Error<I>> Located<I, E>
impl<I, E: Error<I>> Located<I, E>
Auto Trait Implementations§
impl<I, E> Freeze for Located<I, E>where
E: Freeze,
impl<I, E> RefUnwindSafe for Located<I, E>where
E: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, E> Send for Located<I, E>
impl<I, E> Sync for Located<I, E>
impl<I, E> Unpin for Located<I, E>
impl<I, E> UnwindSafe for Located<I, E>where
E: UnwindSafe,
I: UnwindSafe,
Blanket Implementations§
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