[][src]Struct wat_ast::DataSectionEntry

pub struct DataSectionEntry<'a> {
    pub idx: Option<Index<'a>>,
    pub offset: Offset<'a>,
    pub data_string: DataString<'a>,
}

Fields

idx: Option<Index<'a>>offset: Offset<'a>data_string: DataString<'a>

Trait Implementations

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for DataSectionEntry<'a>

impl<'a> Send for DataSectionEntry<'a>

impl<'a> Sync for DataSectionEntry<'a>

impl<'a> Unpin for DataSectionEntry<'a>

impl<'a> UnwindSafe for DataSectionEntry<'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.