Enum paralegal_spdg::rustc::mir::interpret::ErrorHandled
source · pub enum ErrorHandled {
Reported(ReportedErrorInfo),
TooGeneric,
}
Variants§
Reported(ReportedErrorInfo)
Already reported an error for this evaluation, and the compilation is
guaranteed to fail. Warnings/lints must not produce Reported
.
TooGeneric
Don’t emit an error, the evaluation failed because the MIR was generic and the args didn’t fully monomorphize it.
Auto Trait Implementations§
impl RefUnwindSafe for ErrorHandled
impl Send for ErrorHandled
impl Sync for ErrorHandled
impl Unpin for ErrorHandled
impl UnwindSafe for ErrorHandled
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.