wasm_wave::ast

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

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

Source§

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>,

Source§

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>,

Source§

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.