Struct parity_wasm::elements::ImportSection [−][src]
pub struct ImportSection(_);
Section of the imports definition.
Methods
impl ImportSection[src]
impl ImportSectionpub fn with_entries(entries: Vec<ImportEntry>) -> Self[src]
pub fn with_entries(entries: Vec<ImportEntry>) -> SelfNew import section with provided types
pub fn entries(&self) -> &[ImportEntry][src]
pub fn entries(&self) -> &[ImportEntry]List of import entries.
pub fn entries_mut(&mut self) -> &mut Vec<ImportEntry>[src]
pub fn entries_mut(&mut self) -> &mut Vec<ImportEntry>List of import entries (mutable).
pub fn functions(&self) -> usize[src]
pub fn functions(&self) -> usizeReturns number of functions
pub fn globals(&self) -> usize[src]
pub fn globals(&self) -> usizeReturns number of globals
Trait Implementations
impl Debug for ImportSection[src]
impl Debug for ImportSectionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for ImportSection[src]
impl Default for ImportSectionfn default() -> ImportSection[src]
fn default() -> ImportSectionReturns the "default value" for a type. Read more
impl Clone for ImportSection[src]
impl Clone for ImportSectionfn clone(&self) -> ImportSection[src]
fn clone(&self) -> ImportSectionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for ImportSection[src]
impl PartialEq for ImportSectionfn eq(&self, other: &ImportSection) -> bool[src]
fn eq(&self, other: &ImportSection) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ImportSection) -> bool[src]
fn ne(&self, other: &ImportSection) -> boolThis method tests for !=.
impl Deserialize for ImportSection[src]
impl Deserialize for ImportSectiontype Error = Error
Serialization error produced by deserialization routine.
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, Self::Error>[src]
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, Self::Error>Deserialize type from serial i/o
impl Serialize for ImportSection[src]
impl Serialize for ImportSectionAuto Trait Implementations
impl Send for ImportSection
impl Send for ImportSectionimpl Sync for ImportSection
impl Sync for ImportSection