Struct parity_wasm::elements::TableSection [−][src]
pub struct TableSection(_);
Section with table definition (currently only one is allowed).
Methods
impl TableSection[src]
impl TableSectionpub fn entries(&self) -> &[TableType][src]
pub fn entries(&self) -> &[TableType]Table entries.
pub fn with_entries(entries: Vec<TableType>) -> Self[src]
pub fn with_entries(entries: Vec<TableType>) -> SelfNew table section with provided table entries
pub fn entries_mut(&mut self) -> &mut Vec<TableType>[src]
pub fn entries_mut(&mut self) -> &mut Vec<TableType>Mutable table entries.
Trait Implementations
impl Default for TableSection[src]
impl Default for TableSectionfn default() -> TableSection[src]
fn default() -> TableSectionReturns the "default value" for a type. Read more
impl Debug for TableSection[src]
impl Debug for TableSectionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for TableSection[src]
impl Clone for TableSectionfn clone(&self) -> TableSection[src]
fn clone(&self) -> TableSectionReturns 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 TableSection[src]
impl PartialEq for TableSectionfn eq(&self, other: &TableSection) -> bool[src]
fn eq(&self, other: &TableSection) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TableSection) -> bool[src]
fn ne(&self, other: &TableSection) -> boolThis method tests for !=.
impl Deserialize for TableSection[src]
impl Deserialize for TableSectiontype 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 TableSection[src]
impl Serialize for TableSectionAuto Trait Implementations
impl Send for TableSection
impl Send for TableSectionimpl Sync for TableSection
impl Sync for TableSection