rowan::api

Type Alias SyntaxElement

Source
pub type SyntaxElement<L> = NodeOrToken<SyntaxNode<L>, SyntaxToken<L>>;

Aliased Type§

enum SyntaxElement<L> {
    Node(SyntaxNode<L>),
    Token(SyntaxToken<L>),
}

Variants§

§

Node(SyntaxNode<L>)

§

Token(SyntaxToken<L>)

Implementations§

Source§

impl<L: Language> SyntaxElement<L>

Source

pub fn text_range(&self) -> TextRange

Source

pub fn index(&self) -> usize

Source

pub fn kind(&self) -> L::Kind

Source

pub fn parent(&self) -> Option<SyntaxNode<L>>

Source

pub fn ancestors(&self) -> impl Iterator<Item = SyntaxNode<L>>

Source

pub fn next_sibling_or_token(&self) -> Option<SyntaxElement<L>>

Source

pub fn prev_sibling_or_token(&self) -> Option<SyntaxElement<L>>

Source

pub fn detach(&self)

Source§

impl<N, T> NodeOrToken<N, T>

Source

pub fn into_node(self) -> Option<N>

Source

pub fn into_token(self) -> Option<T>

Source

pub fn as_node(&self) -> Option<&N>

Source

pub fn as_token(&self) -> Option<&T>

Trait Implementations§

Source§

impl<L: Language> From<NodeOrToken<SyntaxNode, SyntaxToken>> for SyntaxElement<L>

Source§

fn from(raw: SyntaxElement) -> SyntaxElement<L>

Converts to this type from the input type.
Source§

impl<L: Language> From<SyntaxNode<L>> for SyntaxElement<L>

Source§

fn from(node: SyntaxNode<L>) -> SyntaxElement<L>

Converts to this type from the input type.
Source§

impl<L: Language> From<SyntaxToken<L>> for SyntaxElement<L>

Source§

fn from(token: SyntaxToken<L>) -> SyntaxElement<L>

Converts to this type from the input type.
Source§

impl<N: Clone, T: Clone> Clone for NodeOrToken<N, T>

Source§

fn clone(&self) -> NodeOrToken<N, T>

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<N: Debug, T: Debug> Debug for NodeOrToken<N, T>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<N: Display, T: Display> Display for NodeOrToken<N, T>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<N: Hash, T: Hash> Hash for NodeOrToken<N, T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<N: Ord, T: Ord> Ord for NodeOrToken<N, T>

Source§

fn cmp(&self, other: &NodeOrToken<N, T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<N: PartialEq, T: PartialEq> PartialEq for NodeOrToken<N, T>

Source§

fn eq(&self, other: &NodeOrToken<N, T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<N: PartialOrd, T: PartialOrd> PartialOrd for NodeOrToken<N, T>

Source§

fn partial_cmp(&self, other: &NodeOrToken<N, T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<N: Copy, T: Copy> Copy for NodeOrToken<N, T>

Source§

impl<N: Eq, T: Eq> Eq for NodeOrToken<N, T>

Source§

impl<N, T> StructuralPartialEq for NodeOrToken<N, T>