pub enum Sort {
Bits(u32),
Memory,
}Expand description
What kind of thing a term computes.
Almost everything is a bitvector, and the exception is the whole point of this type: a rule with an effect relates one memory to another, and a memory is not a number however many bits one is willing to spend on it.
Variants§
Bits(u32)
A bitvector this many bits wide.
Memory
The whole of memory, a map from an address to a byte.
Implementations§
Trait Implementations§
impl Copy for Sort
impl Eq for Sort
impl StructuralPartialEq for Sort
Auto Trait Implementations§
impl Freeze for Sort
impl RefUnwindSafe for Sort
impl Send for Sort
impl Sync for Sort
impl Unpin for Sort
impl UnsafeUnpin for Sort
impl UnwindSafe for Sort
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