[][src]Struct parity_wasm::elements::ResizableLimits

pub struct ResizableLimits { /* fields omitted */ }

Memory and table limits.

Implementations

impl ResizableLimits[src]

pub fn new(min: u32, max: Option<u32>) -> Self[src]

New memory limits definition.

pub fn initial(&self) -> u32[src]

Initial size.

pub fn maximum(&self) -> Option<u32>[src]

Maximum size.

Trait Implementations

impl Clone for ResizableLimits[src]

impl Copy for ResizableLimits[src]

impl Debug for ResizableLimits[src]

impl Deserialize for ResizableLimits[src]

type Error = Error

Serialization error produced by deserialization routine.

impl PartialEq<ResizableLimits> for ResizableLimits[src]

impl Serialize for ResizableLimits[src]

type Error = Error

Serialization error produced by serialization routine.

impl StructuralPartialEq for ResizableLimits[src]

Auto Trait Implementations

impl RefUnwindSafe for ResizableLimits

impl Send for ResizableLimits

impl Sync for ResizableLimits

impl Unpin for ResizableLimits

impl UnwindSafe for ResizableLimits

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.