Expand description
A named struct for holding the information on how an invariant is relevant to a bytecode.
Fields
insts: BTreeMap<Vec<Type>, BTreeSet<Vec<Type>>>
for each inst_fun
(instantiation of function type parameters) in the key set, the
associated value is a set of inst_inv
(instantiation of invariant type parameters) that
are applicable to the concrete function instance F<inst_fun>
.
Trait Implementations
sourceimpl Clone for PerBytecodeRelevance
impl Clone for PerBytecodeRelevance
sourcefn clone(&self) -> PerBytecodeRelevance
fn clone(&self) -> PerBytecodeRelevance
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for PerBytecodeRelevance
impl Default for PerBytecodeRelevance
sourcefn default() -> PerBytecodeRelevance
fn default() -> PerBytecodeRelevance
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for PerBytecodeRelevance
impl Send for PerBytecodeRelevance
impl Sync for PerBytecodeRelevance
impl Unpin for PerBytecodeRelevance
impl UnwindSafe for PerBytecodeRelevance
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