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>
impl<L: Language> SyntaxElement<L>
pub fn text_range(&self) -> TextRange
pub fn index(&self) -> usize
pub fn kind(&self) -> L::Kind
pub fn parent(&self) -> Option<SyntaxNode<L>>
pub fn ancestors(&self) -> impl Iterator<Item = SyntaxNode<L>>
pub fn next_sibling_or_token(&self) -> Option<SyntaxElement<L>>
pub fn prev_sibling_or_token(&self) -> Option<SyntaxElement<L>>
pub fn detach(&self)
Trait Implementations§
Source§impl<L: Language> From<NodeOrToken<SyntaxNode, SyntaxToken>> for SyntaxElement<L>
impl<L: Language> From<NodeOrToken<SyntaxNode, SyntaxToken>> for SyntaxElement<L>
Source§fn from(raw: SyntaxElement) -> SyntaxElement<L>
fn from(raw: SyntaxElement) -> SyntaxElement<L>
Converts to this type from the input type.
Source§impl<L: Language> From<SyntaxNode<L>> for SyntaxElement<L>
impl<L: Language> From<SyntaxNode<L>> for SyntaxElement<L>
Source§fn from(node: SyntaxNode<L>) -> SyntaxElement<L>
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>
impl<L: Language> From<SyntaxToken<L>> for SyntaxElement<L>
Source§fn from(token: SyntaxToken<L>) -> SyntaxElement<L>
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>
impl<N: Clone, T: Clone> Clone for NodeOrToken<N, T>
Source§fn clone(&self) -> NodeOrToken<N, T>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<N: Ord, T: Ord> Ord for NodeOrToken<N, T>
impl<N: Ord, T: Ord> Ord for NodeOrToken<N, T>
Source§fn cmp(&self, other: &NodeOrToken<N, T>) -> Ordering
fn cmp(&self, other: &NodeOrToken<N, T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more