[][src]Struct wasmparser::BrTable

pub struct BrTable<'a> { /* fields omitted */ }

A br_table entries representation.

Methods

impl<'a> BrTable<'a>[src]

pub fn len(&self) -> usize[src]

Returns the number of br_table entries, not including the default label

pub fn read_table(&self) -> Result<(Box<[u32]>, u32)>[src]

Reads br_table entries.

Examples

let buf = vec![0x0e, 0x02, 0x01, 0x02, 0x00];
let mut reader = wasmparser::BinaryReader::new(&buf);
let op = reader.read_operator().unwrap();
if let wasmparser::Operator::BrTable { ref table } = op {
    let br_table_depths = table.read_table().unwrap();
    assert!(br_table_depths.0 == vec![1,2].into_boxed_slice() &&
            br_table_depths.1 == 0);
} else {
    unreachable!();
}

Trait Implementations

impl<'a> IntoIterator for &'a BrTable<'a>[src]

type Item = u32

The type of the elements being iterated over.

type IntoIter = BrTableIterator<'a>

Which kind of iterator are we turning this into?

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

Auto Trait Implementations

impl<'a> Send for BrTable<'a>

impl<'a> Sync for BrTable<'a>

impl<'a> Unpin for BrTable<'a>

impl<'a> UnwindSafe for BrTable<'a>

impl<'a> RefUnwindSafe for BrTable<'a>

Blanket Implementations

impl<T> From<T> for T[src]

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

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.

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

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

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