pub enum Type {
BitVector(Option<usize>),
Bool,
Int,
Unit,
}
Expand description
Verification type
Variants§
BitVector(Option<usize>)
The expression is a bitvector, currently modeled in the logic QF_BV https://SMT-LIB.cs.uiowa.edu/version1/logics/QF_BV.smt This corresponds to Cranelift’s Isle type: (type Value (primitive Value))
Bool
The expression is a boolean. This does not directly correspond to a specific Cranelift Isle type, rather, we use it for the language of assertions.
Int
The expression is an Isle type. This is separate from BitVector because it allows us to use a different solver type (e.h., Int) This corresponds to Cranelift’s Isle type: (type Type (primitive Type))
Unit
Trait Implementations§
impl Copy for Type
impl Eq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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