[][src]Struct parity_wasm::elements::MemorySection

pub struct MemorySection(_);

Section with table definition (currently only one entry is allowed).

Implementations

impl MemorySection[src]

pub fn entries(&self) -> &[MemoryType][src]

List of all memory entries in the section

pub fn with_entries(entries: Vec<MemoryType>) -> Self[src]

New memory section with memory types.

pub fn entries_mut(&mut self) -> &mut Vec<MemoryType>[src]

Mutable list of all memory entries in the section.

Trait Implementations

impl Clone for MemorySection[src]

impl Debug for MemorySection[src]

impl Default for MemorySection[src]

impl Deserialize for MemorySection[src]

type Error = Error

Serialization error produced by deserialization routine.

impl PartialEq<MemorySection> for MemorySection[src]

impl Serialize for MemorySection[src]

type Error = Error

Serialization error produced by serialization routine.

impl StructuralPartialEq for MemorySection[src]

Auto Trait Implementations

impl RefUnwindSafe for MemorySection

impl Send for MemorySection

impl Sync for MemorySection

impl Unpin for MemorySection

impl UnwindSafe for MemorySection

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.