pub struct AnnotatedCompiledModule {
pub loc: Loc,
pub module_name_loc: Loc,
pub address_name: Option<Name>,
pub named_module: NamedCompiledModule,
pub function_infos: UniqueMap<FunctionName, FunctionInfo>,
}
Fields
loc: Loc
module_name_loc: Loc
address_name: Option<Name>
named_module: NamedCompiledModule
function_infos: UniqueMap<FunctionName, FunctionInfo>
Implementations
sourceimpl AnnotatedCompiledModule
impl AnnotatedCompiledModule
pub fn module_ident(&self) -> ModuleIdent
pub fn module_id(&self) -> (Option<Name>, ModuleId)
Trait Implementations
sourceimpl Clone for AnnotatedCompiledModule
impl Clone for AnnotatedCompiledModule
sourcefn clone(&self) -> AnnotatedCompiledModule
fn clone(&self) -> AnnotatedCompiledModule
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 Debug for AnnotatedCompiledModule
impl Debug for AnnotatedCompiledModule
impl TargetModule for AnnotatedCompiledModule
Auto Trait Implementations
impl RefUnwindSafe for AnnotatedCompiledModule
impl Send for AnnotatedCompiledModule
impl Sync for AnnotatedCompiledModule
impl Unpin for AnnotatedCompiledModule
impl UnwindSafe for AnnotatedCompiledModule
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