Struct wasmparser::BrTable [−][src]
A br_table entries representation.
Implementations
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 is_empty(&self) -> bool
[src]
Returns whether BrTable
doesn’t have any labels apart from the default one.
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> Clone for BrTable<'a>
[src]
impl<'a> Debug for BrTable<'a>
[src]
impl<'a> IntoIterator for &'a BrTable<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for BrTable<'a>
impl<'a> Send for BrTable<'a>
impl<'a> Sync for BrTable<'a>
impl<'a> Unpin for BrTable<'a>
impl<'a> UnwindSafe for BrTable<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut 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.
pub 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>,