Enum flowistry_pdg::rustc::mir::interpret::LitToConstError
source · pub enum LitToConstError {
TypeError,
Reported(ErrorGuaranteed),
}
Expand description
Error type for tcx.lit_to_const
.
Variants§
TypeError
The literal’s inferred type did not match the expected ty
in the input.
This is used for graceful error handling (delay_span_bug
) in
type checking (Const::from_anon_const
).
Reported(ErrorGuaranteed)
Auto Trait Implementations§
impl RefUnwindSafe for LitToConstError
impl Send for LitToConstError
impl Sync for LitToConstError
impl Unpin for LitToConstError
impl UnwindSafe for LitToConstError
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