[][src]Struct lumberjack::NonTerminal

pub struct NonTerminal { /* fields omitted */ }

Struct representing a non terminal tree node.

NonTerminals are defined by their label, optional annotation and their covered span.

Methods

impl NonTerminal[src]

pub fn continuity(&self) -> Continuity[src]

Returns whether this NonTerminal's Span is continuous.

This does not return whether this nonterminal introduces a edge cutting another node's span. It does return whether this node's span is continuous.

pub fn features(&self) -> Option<&Features>[src]

Get this NonTerminal's Features.

pub fn features_mut(&mut self) -> &mut Features[src]

Get this NonTerminal's Features mutably.

This method initializes the features if they are None.

pub fn set_features(&mut self, features: Option<Features>) -> Option<Features>[src]

Set this NonTerminal's Features.

Returns the replaced value.

pub fn span(&self) -> &Span[src]

Get the NonTerminal's span.

pub fn label(&self) -> &str[src]

Return the label of the NonTerminal.

pub fn set_label(&mut self, label: impl Into<String>) -> String[src]

Return old label and replace with label.

Trait Implementations

impl PartialEq<NonTerminal> for NonTerminal[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl From<NonTerminal> for Node[src]

impl Clone for NonTerminal[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for NonTerminal[src]

impl Debug for NonTerminal[src]

impl Display for NonTerminal[src]

Auto Trait Implementations

impl Send for NonTerminal

impl Sync for NonTerminal

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]