pub type SyntaxElement = NodeOrToken<SyntaxNode, SyntaxToken>;
Aliased Type§
enum SyntaxElement {
Node(SyntaxNode),
Token(SyntaxToken),
}
Variants§
Node(SyntaxNode)
Token(SyntaxToken)
Implementations§
Source§impl SyntaxElement
impl SyntaxElement
pub fn text_range(&self) -> TextRange
pub fn index(&self) -> usize
pub fn kind(&self) -> SyntaxKind
pub fn parent(&self) -> Option<SyntaxNode>
pub fn ancestors(&self) -> impl Iterator<Item = SyntaxNode>
pub fn first_token(&self) -> Option<SyntaxToken>
pub fn last_token(&self) -> Option<SyntaxToken>
pub fn next_sibling_or_token(&self) -> Option<SyntaxElement>
pub fn prev_sibling_or_token(&self) -> Option<SyntaxElement>
pub fn detach(&self)
Trait Implementations§
Source§impl<L: Language> From<NodeOrToken<SyntaxNode<L>, SyntaxToken<L>>> for SyntaxElement
impl<L: Language> From<NodeOrToken<SyntaxNode<L>, SyntaxToken<L>>> for SyntaxElement
Source§fn from(element: SyntaxElement<L>) -> SyntaxElement
fn from(element: SyntaxElement<L>) -> SyntaxElement
Converts to this type from the input type.
Source§impl From<SyntaxNode> for SyntaxElement
impl From<SyntaxNode> for SyntaxElement
Source§fn from(node: SyntaxNode) -> SyntaxElement
fn from(node: SyntaxNode) -> SyntaxElement
Converts to this type from the input type.
Source§impl From<SyntaxToken> for SyntaxElement
impl From<SyntaxToken> for SyntaxElement
Source§fn from(token: SyntaxToken) -> SyntaxElement
fn from(token: SyntaxToken) -> SyntaxElement
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