Enum debris_llir::opt::variable_metadata::Hint
source · pub enum Hint {
Unknown,
Exact(i32),
}
Expand description
A hint about the possible value of a variable
Variants§
Unknown
Hints that the value is unknown (the variable can take any value)
Exact(i32)
Hints that the value can have exactly one value (the variable becomes comptime known)
Implementations§
Trait Implementations§
impl Copy for Hint
Auto Trait Implementations§
impl RefUnwindSafe for Hint
impl Send for Hint
impl Sync for Hint
impl Unpin for Hint
impl UnwindSafe for Hint
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