[][src]Struct parity_wasm::elements::FunctionType

pub struct FunctionType { /* fields omitted */ }

Function signature type.

Methods

impl FunctionType[src]

pub fn new(params: Vec<ValueType>, return_type: Option<ValueType>) -> Self[src]

New function type given the signature in-params(params) and return type (return_type)

pub fn form(&self) -> u8[src]

Function form (currently only valid value is 0x60)

Important traits for &'_ [u8]
pub fn params(&self) -> &[ValueType][src]

Parameters in the function signature.

Important traits for Vec<u8>
pub fn params_mut(&mut self) -> &mut Vec<ValueType>[src]

Mutable parameters in the function signature.

pub fn return_type(&self) -> Option<ValueType>[src]

Return type in the function signature, if any.

pub fn return_type_mut(&mut self) -> &mut Option<ValueType>[src]

Mutable type in the function signature, if any.

Trait Implementations

impl Deserialize for FunctionType[src]

type Error = Error

Serialization error produced by deserialization routine.

impl Serialize for FunctionType[src]

type Error = Error

Serialization error produced by serialization routine.

impl Eq for FunctionType[src]

impl Default for FunctionType[src]

impl PartialEq<FunctionType> for FunctionType[src]

impl Clone for FunctionType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FunctionType[src]

impl Hash for FunctionType[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.