pub struct ImportCounts {
pub functions: u32,
pub tables: u32,
pub memories: u32,
pub globals: u32,
}
Expand description
The counts of imported entities in a WebAssembly module.
Fields§
§functions: u32
Number of imported functions in the module.
tables: u32
Number of imported tables in the module.
memories: u32
Number of imported memories in the module.
globals: u32
Number of imported globals in the module.
Implementations§
Source§impl ImportCounts
impl ImportCounts
Sourcepub fn local_function_index(
&self,
idx: FunctionIndex,
) -> Result<LocalFunctionIndex, FunctionIndex>
pub fn local_function_index( &self, idx: FunctionIndex, ) -> Result<LocalFunctionIndex, FunctionIndex>
Convert the FunctionIndex
to a LocalFunctionIndex
.
Sourcepub fn local_table_index(
&self,
idx: TableIndex,
) -> Result<LocalTableIndex, TableIndex>
pub fn local_table_index( &self, idx: TableIndex, ) -> Result<LocalTableIndex, TableIndex>
Convert the TableIndex
to a LocalTableIndex
.
Sourcepub fn local_memory_index(
&self,
idx: MemoryIndex,
) -> Result<LocalMemoryIndex, MemoryIndex>
pub fn local_memory_index( &self, idx: MemoryIndex, ) -> Result<LocalMemoryIndex, MemoryIndex>
Convert the MemoryIndex
to a LocalMemoryIndex
.
Sourcepub fn local_global_index(
&self,
idx: GlobalIndex,
) -> Result<LocalGlobalIndex, GlobalIndex>
pub fn local_global_index( &self, idx: GlobalIndex, ) -> Result<LocalGlobalIndex, GlobalIndex>
Convert the GlobalIndex
to a LocalGlobalIndex
.
Sourcepub fn function_index(&self, idx: LocalFunctionIndex) -> FunctionIndex
pub fn function_index(&self, idx: LocalFunctionIndex) -> FunctionIndex
Convert the LocalFunctionIndex
to a FunctionIndex
.
Sourcepub fn table_index(&self, idx: LocalTableIndex) -> TableIndex
pub fn table_index(&self, idx: LocalTableIndex) -> TableIndex
Convert the LocalTableIndex
to a TableIndex
.
Sourcepub fn memory_index(&self, idx: LocalMemoryIndex) -> MemoryIndex
pub fn memory_index(&self, idx: LocalMemoryIndex) -> MemoryIndex
Convert the LocalMemoryIndex
to a MemoryIndex
.
Sourcepub fn global_index(&self, idx: LocalGlobalIndex) -> GlobalIndex
pub fn global_index(&self, idx: LocalGlobalIndex) -> GlobalIndex
Convert the LocalGlobalIndex
to a GlobalIndex
.
Trait Implementations§
Source§impl Archive for ImportCounts
impl Archive for ImportCounts
Source§impl Clone for ImportCounts
impl Clone for ImportCounts
Source§fn clone(&self) -> ImportCounts
fn clone(&self) -> ImportCounts
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ImportCounts
impl Debug for ImportCounts
Source§impl Default for ImportCounts
impl Default for ImportCounts
Source§fn default() -> ImportCounts
fn default() -> ImportCounts
Returns the “default value” for a type. Read more
Source§impl<__D: Fallible + ?Sized> Deserialize<ImportCounts, __D> for Archived<ImportCounts>
impl<__D: Fallible + ?Sized> Deserialize<ImportCounts, __D> for Archived<ImportCounts>
Source§fn deserialize(
&self,
deserializer: &mut __D,
) -> Result<ImportCounts, __D::Error>
fn deserialize( &self, deserializer: &mut __D, ) -> Result<ImportCounts, __D::Error>
Deserializes using the given deserializer
Source§impl PartialEq for ImportCounts
impl PartialEq for ImportCounts
impl Copy for ImportCounts
impl Eq for ImportCounts
impl StructuralPartialEq for ImportCounts
Auto Trait Implementations§
impl Freeze for ImportCounts
impl RefUnwindSafe for ImportCounts
impl Send for ImportCounts
impl Sync for ImportCounts
impl Unpin for ImportCounts
impl UnwindSafe for ImportCounts
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Source§impl<T> ArchiveUnsized for Twhere
T: Archive,
impl<T> ArchiveUnsized for Twhere
T: Archive,
Source§type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
The archived counterpart of this type. Unlike
Archive
, it may be unsized. Read moreSource§type MetadataResolver = ()
type MetadataResolver = ()
The resolver for the metadata of this type. Read more
Source§unsafe fn resolve_metadata(
&self,
_: usize,
_: <T as ArchiveUnsized>::MetadataResolver,
_: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata,
)
unsafe fn resolve_metadata( &self, _: usize, _: <T as ArchiveUnsized>::MetadataResolver, _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata, )
Creates the archived version of the metadata for this value at the given position and writes
it to the given output. Read more
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.