[][src]Struct wat_ast::GlobalSectionEntry

pub struct GlobalSectionEntry<'a> {
    pub idx: Option<Index<'a>>,
    pub export: Option<Export<'a>>,
    pub global_type: GlobalType,
    pub expr: Expression<'a>,
}

Fields

idx: Option<Index<'a>>export: Option<Export<'a>>global_type: GlobalTypeexpr: Expression<'a>

Trait Implementations

impl<'a> Clone for GlobalSectionEntry<'a>[src]

impl<'a> Debug for GlobalSectionEntry<'a>[src]

impl<'a> Eq for GlobalSectionEntry<'a>[src]

impl<'a> Parse<'a> for GlobalSectionEntry<'a>[src]

impl<'a> PartialEq<GlobalSectionEntry<'a>> for GlobalSectionEntry<'a>[src]

impl<'a> StructuralEq for GlobalSectionEntry<'a>[src]

impl<'a> StructuralPartialEq for GlobalSectionEntry<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for GlobalSectionEntry<'a>

impl<'a> Send for GlobalSectionEntry<'a>

impl<'a> Sync for GlobalSectionEntry<'a>

impl<'a> Unpin for GlobalSectionEntry<'a>

impl<'a> UnwindSafe for GlobalSectionEntry<'a>

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.