Struct wagon_parser::SpannableNode
source · pub struct SpannableNode<T: Parse> { /* private fields */ }
Expand description
A node is anything that implements Parse
. SpannableNode
then, is a wrapper around this node that holds span information about it.
It is intended to be a mostly see-through wrapper around whatever the inner node is. Parse
is implemented on it in a way that
automatically calculates the span information.
Implementations§
source§impl<T: Parse> SpannableNode<T>
impl<T: Parse> SpannableNode<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Get the inner node, consuming the wrapper.
sourcepub fn to_inner_mut(&mut self) -> &mut T
pub fn to_inner_mut(&mut self) -> &mut T
Get a mutable reference to the inner node.
sourcepub fn deconstruct(&mut self) -> (&mut T, &mut Span)
pub fn deconstruct(&mut self) -> (&mut T, &mut Span)
Get mutable references to both the inner node and the span.
Trait Implementations§
source§impl<T: Clone + Parse> Clone for SpannableNode<T>
impl<T: Clone + Parse> Clone for SpannableNode<T>
source§fn clone(&self) -> SpannableNode<T>
fn clone(&self) -> SpannableNode<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Parse> From<T> for SpannableNode<T>
impl<T: Parse> From<T> for SpannableNode<T>
source§impl<T: Parse + Debug> Parse for SpannableNode<T>
impl<T: Parse + Debug> Parse for SpannableNode<T>
source§fn parse(lexer: &mut LexerBridge<'_>) -> ParseResult<Self>where
Self: Sized,
fn parse(lexer: &mut LexerBridge<'_>) -> ParseResult<Self>where
Self: Sized,
Given a lexer, try to parse a valid instance of this node. Read more
source§fn parse_sep(
lexer: &mut LexerBridge<'_>,
join: Tokens
) -> ParseResult<Vec<Self>>where
Self: Sized,
fn parse_sep(
lexer: &mut LexerBridge<'_>,
join: Tokens
) -> ParseResult<Vec<Self>>where
Self: Sized,
source§fn parse_sep_end(
lexer: &mut LexerBridge<'_>,
join: Tokens,
end: Tokens
) -> ParseResult<Vec<Self>>where
Self: Sized,
fn parse_sep_end(
lexer: &mut LexerBridge<'_>,
join: Tokens,
end: Tokens
) -> ParseResult<Vec<Self>>where
Self: Sized,
source§impl<T: Parse + PartialEq> PartialEq for SpannableNode<T>
impl<T: Parse + PartialEq> PartialEq for SpannableNode<T>
source§impl<T: Parse> Spannable for SpannableNode<T>
impl<T: Parse> Spannable for SpannableNode<T>
source§impl<T: Parse + ToTokens> ToTokens for SpannableNode<T>
impl<T: Parse + ToTokens> ToTokens for SpannableNode<T>
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl<T: Parse + Eq> Eq for SpannableNode<T>
Auto Trait Implementations§
impl<T> Freeze for SpannableNode<T>where
T: Freeze,
impl<T> RefUnwindSafe for SpannableNode<T>where
T: RefUnwindSafe,
impl<T> Send for SpannableNode<T>where
T: Send,
impl<T> Sync for SpannableNode<T>where
T: Sync,
impl<T> Unpin for SpannableNode<T>where
T: Unpin,
impl<T> UnwindSafe for SpannableNode<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> WrapSpannable<T, SpannableNode<T>> for Twhere
T: Parse,
impl<T> WrapSpannable<T, SpannableNode<T>> for Twhere
T: Parse,
source§fn wrap_spannable(self) -> SpannableNode<T>
fn wrap_spannable(self) -> SpannableNode<T>
Wrap dummy span information around the node.
source§fn into_spanned(self, span: Range<usize>) -> SpannableNode<T>
fn into_spanned(self, span: Range<usize>) -> SpannableNode<T>
Convert the node into a
SpannableNode
with the specified Span
.