[][src]Struct wat_ast::TypeUse

pub struct TypeUse { /* fields omitted */ }

https://webassembly.github.io/spec/core/text/modules.html#text-typeuse

Implementations

impl TypeUse[src]

pub fn new(
    type_def: Option<Type>,
    params: Vec<Param>,
    results: Vec<Result>
) -> Self
[src]

Trait Implementations

impl Clone for TypeUse[src]

impl Debug for TypeUse[src]

impl Eq for TypeUse[src]

impl<'_> Parse<'_> for TypeUse[src]

impl PartialEq<TypeUse> for TypeUse[src]

impl StructuralEq for TypeUse[src]

impl StructuralPartialEq for TypeUse[src]

Auto Trait Implementations

impl RefUnwindSafe for TypeUse

impl Send for TypeUse

impl Sync for TypeUse

impl Unpin for TypeUse

impl UnwindSafe for TypeUse

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.