pub enum Error<E, F> {
Transport(E),
HttpClient(F),
Interpreter(Error),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<E, F> Freeze for Error<E, F>
impl<E, F> RefUnwindSafe for Error<E, F>where
E: RefUnwindSafe,
F: RefUnwindSafe,
impl<E, F> Send for Error<E, F>
impl<E, F> Sync for Error<E, F>
impl<E, F> Unpin for Error<E, F>
impl<E, F> UnwindSafe for Error<E, F>where
E: UnwindSafe,
F: 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