Struct wasm_wave::ast::Node

source ·
pub struct Node { /* private fields */ }
Expand description

A WAVE AST node.

Implementations§

source§

impl Node

source

pub fn ty(&self) -> NodeType

Returns this node’s type.

source

pub fn span(&self) -> Span

Returns this node’s span.

source

pub fn as_bool(&self) -> Result<bool, ParserError>

Returns a bool value if this node represents a bool.

source

pub fn as_number<T: FromStr>(&self, src: &str) -> Result<T, ParserError>

Returns a number value of the given type (integer or float) if this node can represent a number of that type.

source

pub fn as_char(&self, src: &str) -> Result<char, ParserError>

Returns a char value if this node represents a valid char.

source

pub fn as_str<'src>( &self, src: &'src str ) -> Result<Cow<'src, str>, ParserError>

Returns a str value if this node represents a valid string.

source

pub fn iter_str<'src>( &self, src: &'src str ) -> Result<impl Iterator<Item = Result<Cow<'src, str>, ParserError>>, ParserError>

Returns an iterator of string “parts” which together form a decoded string value if this node represents a valid string.

source

pub fn as_tuple( &self ) -> Result<impl ExactSizeIterator<Item = &Node>, ParserError>

Returns an iterator of value nodes if this node represents a tuple.

source

pub fn as_list( &self ) -> Result<impl ExactSizeIterator<Item = &Node>, ParserError>

Returns an iterator of value nodes if this node represents a list.

source

pub fn as_record<'this, 'src>( &'this self, src: &'src str ) -> Result<impl ExactSizeIterator<Item = (&'src str, &'this Node)>, ParserError>

Returns an iterator of field name and value node pairs if this node represents a record value.

source

pub fn as_variant<'this, 'src>( &'this self, src: &'src str ) -> Result<(&'src str, Option<&'this Node>), ParserError>

Returns a variant label and optional payload if this node can represent a variant value.

source

pub fn as_enum<'src>(&self, src: &'src str) -> Result<&'src str, ParserError>

Returns an enum value label if this node represents a label.

source

pub fn as_option(&self) -> Result<Option<&Node>, ParserError>

Returns an option value if this node represents an option.

source

pub fn as_result( &self ) -> Result<Result<Option<&Node>, Option<&Node>>, ParserError>

Returns a result value with optional payload value if this node represents a result.

source

pub fn as_flags<'this, 'src: 'this>( &'this self, src: &'src str ) -> Result<impl Iterator<Item = &'src str> + 'this, ParserError>

Returns an iterator of flag labels if this node represents flags.

source

pub fn to_wasm_value<V: WasmValue>( &self, ty: &V::Type, src: &str ) -> Result<V, ParserError>

Converts this node into the given typed value from the given input source.

source

pub fn to_wasm_params<'types, V: WasmValue + 'static>( &self, types: impl IntoIterator<Item = &'types V::Type>, src: &str ) -> Result<Vec<V>, ParserError>

Converts this node into the given types. See crate::untyped::UntypedFuncCall::to_wasm_params.

Trait Implementations§

source§

impl Clone for Node

source§

fn clone(&self) -> Node

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Node

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Node

§

impl RefUnwindSafe for Node

§

impl Send for Node

§

impl Sync for Node

§

impl Unpin for Node

§

impl UnwindSafe for Node

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.