Struct parity_wasm::builder::TableDefinition [] [src]

pub struct TableDefinition {
    pub min: u32,
    pub max: Option<u32>,
    pub elements: Vec<TableEntryDefinition>,
}

Table definition

Fields

Minimum length

Maximum length, if any

Element segments, if any

Trait Implementations

impl Debug for TableDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for TableDefinition
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Default for TableDefinition
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations