Struct move_stackless_bytecode::mono_analysis::MonoInfo
source · [−]pub struct MonoInfo {
pub structs: BTreeMap<QualifiedId<StructId>, BTreeSet<Vec<Type>>>,
pub funs: BTreeMap<(QualifiedId<FunId>, FunctionVariant), BTreeSet<Vec<Type>>>,
pub spec_funs: BTreeMap<QualifiedId<SpecFunId>, BTreeSet<Vec<Type>>>,
pub spec_vars: BTreeMap<QualifiedId<SpecVarId>, BTreeSet<Vec<Type>>>,
pub type_params: BTreeSet<u16>,
pub vec_inst: BTreeSet<Type>,
pub table_inst: BTreeSet<(Type, Type)>,
pub native_inst: BTreeMap<ModuleId, BTreeSet<Vec<Type>>>,
pub axioms: Vec<Condition>,
}
Expand description
The environment extension computed by this analysis.
Fields
structs: BTreeMap<QualifiedId<StructId>, BTreeSet<Vec<Type>>>
funs: BTreeMap<(QualifiedId<FunId>, FunctionVariant), BTreeSet<Vec<Type>>>
spec_funs: BTreeMap<QualifiedId<SpecFunId>, BTreeSet<Vec<Type>>>
spec_vars: BTreeMap<QualifiedId<SpecVarId>, BTreeSet<Vec<Type>>>
type_params: BTreeSet<u16>
vec_inst: BTreeSet<Type>
table_inst: BTreeSet<(Type, Type)>
native_inst: BTreeMap<ModuleId, BTreeSet<Vec<Type>>>
axioms: Vec<Condition>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MonoInfo
impl !Send for MonoInfo
impl !Sync for MonoInfo
impl Unpin for MonoInfo
impl UnwindSafe for MonoInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more