[−][src]Struct wasmparser::BrTable
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?
fn into_iter(self) -> Self::IntoIter
[src]
impl<'a> Debug for BrTable<'a>
[src]
Auto Trait Implementations
impl<'a> Sync for BrTable<'a>
impl<'a> Send for BrTable<'a>
impl<'a> Unpin for BrTable<'a>
impl<'a> RefUnwindSafe for BrTable<'a>
impl<'a> UnwindSafe for BrTable<'a>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,