Enum muse_reactor::PrepareError
source · pub enum PrepareError {
Compilation(Vec<Ranged<Error>>),
Execution(ExecutionError),
}Expand description
An error while preparing and executing code.
Variants§
Compilation(Vec<Ranged<Error>>)
One or more compilation errors.
Execution(ExecutionError)
An error occurred while executing code.
Trait Implementations§
source§impl Debug for PrepareError
impl Debug for PrepareError
source§impl From<ExecutionError> for PrepareError
impl From<ExecutionError> for PrepareError
source§impl From<Fault> for PrepareError
impl From<Fault> for PrepareError
Auto Trait Implementations§
impl Freeze for PrepareError
impl RefUnwindSafe for PrepareError
impl Send for PrepareError
impl Sync for PrepareError
impl Unpin for PrepareError
impl UnwindSafe for PrepareError
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