Struct wasm_wave::parser::Parser

source ·
pub struct Parser<'source> { /* private fields */ }
Expand description

A Web Assembly Value Encoding parser.

Implementations§

source§

impl<'source> Parser<'source>

source

pub fn new(source: &'source str) -> Self

Returns a new Parser of the given source.

source

pub fn with_lexer(lexer: Lexer<'source>) -> Self

Returns a new Parser with the given Lexer.

source

pub fn parse_value<V: WasmValue>( &mut self, ty: &V::Type ) -> Result<V, ParserError>

Parses a WAVE-encoded value of the given crate::wasm::WasmType into a corresponding WasmValue.

source

pub fn parse_raw_value(&mut self) -> Result<UntypedValue<'source>, ParserError>

Parses a WAVE-encoded value into an UntypedValue.

source

pub fn parse_raw_func_call( &mut self ) -> Result<UntypedFuncCall<'source>, ParserError>

Parses a function name followed by a WAVE-encoded, parenthesized, comma-separated sequence of values into an UntypedFuncCall.

source

pub fn finish(&mut self) -> Result<(), ParserError>

Returns an error if any significant input remains unparsed.

Auto Trait Implementations§

§

impl<'source> Freeze for Parser<'source>

§

impl<'source> RefUnwindSafe for Parser<'source>

§

impl<'source> Send for Parser<'source>

§

impl<'source> Sync for Parser<'source>

§

impl<'source> Unpin for Parser<'source>

§

impl<'source> UnwindSafe for Parser<'source>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.