pub struct TypeContext {
pub tyvars: HashMap<Expr, u32>,
pub tymap: HashMap<u32, Type>,
pub tyvals: HashMap<u32, i128>,
pub bv_unknown_width_sets: HashMap<u32, u32>,
}
Fields§
§tyvars: HashMap<Expr, u32>
§tymap: HashMap<u32, Type>
§tyvals: HashMap<u32, i128>
§bv_unknown_width_sets: HashMap<u32, u32>
Trait Implementations§
Source§impl Clone for TypeContext
impl Clone for TypeContext
Source§fn clone(&self) -> TypeContext
fn clone(&self) -> TypeContext
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TypeContext
impl Debug for TypeContext
Source§impl PartialEq for TypeContext
impl PartialEq for TypeContext
impl Eq for TypeContext
impl StructuralPartialEq for TypeContext
Auto Trait Implementations§
impl Freeze for TypeContext
impl RefUnwindSafe for TypeContext
impl Send for TypeContext
impl Sync for TypeContext
impl Unpin for TypeContext
impl UnwindSafe for TypeContext
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