Struct move_bytecode_utils::Modules
source · [−]pub struct Modules<'a>(_);
Expand description
Set of Move modules indexed by module Id
Implementations
sourceimpl<'a> Modules<'a>
impl<'a> Modules<'a>
sourcepub fn new(modules: impl IntoIterator<Item = &'a CompiledModule>) -> Self
pub fn new(modules: impl IntoIterator<Item = &'a CompiledModule>) -> Self
Construct a set of modules from a slice modules
.
Panics if modules
contains duplicates
sourcepub fn iter_modules(&self) -> Vec<&CompiledModule>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
pub fn iter_modules(&self) -> Vec<&CompiledModule>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Return all modules in this set
sourcepub fn iter_modules_owned(&self) -> Vec<CompiledModule>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
pub fn iter_modules_owned(&self) -> Vec<CompiledModule>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Return all modules in this set
sourcepub fn compute_dependency_graph(&self) -> DependencyGraph<'_>
pub fn compute_dependency_graph(&self) -> DependencyGraph<'_>
Compute a dependency graph for self
sourcepub fn get_map(&self) -> &BTreeMap<ModuleId, &CompiledModule>
pub fn get_map(&self) -> &BTreeMap<ModuleId, &CompiledModule>
Return the backing map of self
sourcepub fn get_module(&self, module_id: &ModuleId) -> Result<&CompiledModule>
pub fn get_module(&self, module_id: &ModuleId) -> Result<&CompiledModule>
Return the bytecode for the module bound to module_id
sourcepub fn get_immediate_dependencies(
&self,
module_id: &ModuleId
) -> Result<Vec<&CompiledModule>>
pub fn get_immediate_dependencies(
&self,
module_id: &ModuleId
) -> Result<Vec<&CompiledModule>>
Return the immediate dependencies for module_id
sourcepub fn get_transitive_dependencies(
&self,
module_id: &ModuleId
) -> Result<Vec<&CompiledModule>>
pub fn get_transitive_dependencies(
&self,
module_id: &ModuleId
) -> Result<Vec<&CompiledModule>>
Return the transitive dependencies for module_id
Trait Implementations
impl<'a> Eq for Modules<'a>
impl<'a> StructuralEq for Modules<'a>
impl<'a> StructuralPartialEq for Modules<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Modules<'a>
impl<'a> Send for Modules<'a>
impl<'a> Sync for Modules<'a>
impl<'a> Unpin for Modules<'a>
impl<'a> UnwindSafe for Modules<'a>
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<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
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