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 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>
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more