Enum rowan::NodeOrToken

source ·
pub enum NodeOrToken<N, T> {
    Node(N),
    Token(T),
}

Variants§

§

Node(N)

§

Token(T)

Implementations§

source§

impl NodeOrToken<&'_ GreenNodeData, &'_ GreenTokenData>

source§

impl NodeOrToken<GreenNode, GreenToken>

source

pub fn kind(&self) -> SyntaxKind

Returns kind of this element.

source

pub fn text_len(&self) -> TextSize

Returns the length of the text covered by this element.

source§

impl NodeOrToken<&'_ GreenNodeData, &'_ GreenTokenData>

source

pub fn kind(&self) -> SyntaxKind

Returns kind of this element.

source

pub fn text_len(self) -> TextSize

Returns the length of the text covered by this element.

source§

impl NodeOrToken<SyntaxNode, SyntaxToken>

source

pub fn text_range(&self) -> TextRange

source

pub fn index(&self) -> usize

source

pub fn kind(&self) -> SyntaxKind

source

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

source

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

source

pub fn first_token(&self) -> Option<SyntaxToken>

source

pub fn last_token(&self) -> Option<SyntaxToken>

source

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

source

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

source

pub fn detach(&self)

source§

impl<L: Language> NodeOrToken<SyntaxNode<L>, SyntaxToken<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<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<'a> From<&'a GreenNode> for NodeOrToken<&'a GreenNodeData, &'a GreenTokenData>

source§

fn from( node: &'a GreenNode ) -> NodeOrToken<&'a GreenNodeData, &'a GreenTokenData>

Converts to this type from the input type.
source§

impl<'a> From<&'a GreenToken> for NodeOrToken<&'a GreenNodeData, &'a GreenTokenData>

source§

fn from( token: &'a GreenToken ) -> NodeOrToken<&'a GreenNodeData, &'a GreenTokenData>

Converts to this type from the input type.
source§

impl From<Cow<'_, GreenNodeData>> for NodeOrToken<GreenNode, GreenToken>

source§

fn from(cow: Cow<'_, GreenNodeData>) -> Self

Converts to this type from the input type.
source§

impl From<GreenNode> for NodeOrToken<GreenNode, GreenToken>

source§

fn from(node: GreenNode) -> NodeOrToken<GreenNode, GreenToken>

Converts to this type from the input type.
source§

impl From<GreenToken> for NodeOrToken<GreenNode, GreenToken>

source§

fn from(token: GreenToken) -> NodeOrToken<GreenNode, GreenToken>

Converts to this type from the input type.
source§

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

source§

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

Converts to this type from the input type.
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<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) -> Selfwhere Self: Sized,

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

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

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

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

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

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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<NodeOrToken<N, T>> 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

This method 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

This method 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

This method 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

This method 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> StructuralEq for NodeOrToken<N, T>

source§

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

Auto Trait Implementations§

§

impl<N, T> RefUnwindSafe for NodeOrToken<N, T>where N: RefUnwindSafe, T: RefUnwindSafe,

§

impl<N, T> Send for NodeOrToken<N, T>where N: Send, T: Send,

§

impl<N, T> Sync for NodeOrToken<N, T>where N: Sync, T: Sync,

§

impl<N, T> Unpin for NodeOrToken<N, T>where N: Unpin, T: Unpin,

§

impl<N, T> UnwindSafe for NodeOrToken<N, T>where N: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · 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> ToOwned for Twhere T: Clone,

§

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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.