pub enum Error<E> {
IOError(Error),
BuildError(E),
BuildPanic(Box<dyn Any + Send + 'static>),
}
Expand description
Represents the types of errors that may occur while using build-parallel.
Variants§
IOError(Error)
Error occurred while internally performing I/O.
BuildError(E)
Error occurred during build callback.
BuildPanic(Box<dyn Any + Send + 'static>)
Panic occurred during build callback.
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for Error<E>where
E: Freeze,
impl<E> !RefUnwindSafe for Error<E>
impl<E> Send for Error<E>where
E: Send,
impl<E> !Sync for Error<E>
impl<E> Unpin for Error<E>where
E: Unpin,
impl<E> !UnwindSafe for Error<E>
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