pub enum AppError<E1, E2> {
WindowError(E1),
DataError(E2),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<E1, E2> Freeze for AppError<E1, E2>
impl<E1, E2> RefUnwindSafe for AppError<E1, E2>where
E1: RefUnwindSafe,
E2: RefUnwindSafe,
impl<E1, E2> Send for AppError<E1, E2>
impl<E1, E2> Sync for AppError<E1, E2>
impl<E1, E2> Unpin for AppError<E1, E2>
impl<E1, E2> UnwindSafe for AppError<E1, E2>where
E1: UnwindSafe,
E2: 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