Node

Struct Node 

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

A WAVE AST node.

Implementations§

§

impl Node

pub fn ty(&self) -> NodeType

Returns this node’s type.

pub fn span(&self) -> Range<usize>

Returns this node’s span.

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

Returns a bool value if this node represents a bool.

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

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

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

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

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.

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.

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

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

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

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

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

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

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.

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

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

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

Returns an option value if this node represents an option.

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.

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

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

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

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

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

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

Trait Implementations§

§

impl Clone for Node

§

fn clone(&self) -> Node

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
§

impl Debug for Node

§

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

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Pointee for T

Source§

type Pointer = u32

Source§

fn debug( pointer: <T as Pointee>::Pointer, f: &mut Formatter<'_>, ) -> Result<(), Error>

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more