[][src]Enum lumberjack::Node

pub enum Node {
    NonTerminal(NonTerminal),
    Terminal(Terminal),
}

Enum representing Nodes in a constituency tree.

Variants

NonTerminal(NonTerminal)

Nonterminal Node.

Terminal(Terminal)

Terminal Node.

Methods

impl Node[src]

pub fn is_terminal(&self) -> bool[src]

Returns whether a self is Terminal.

pub fn terminal(&self) -> Option<&Terminal>[src]

Get a Option<&Terminal>.

Returns None if self is a Node::NonTerminal.

pub fn nonterminal(&self) -> Option<&NonTerminal>[src]

Get a Option<&NonTerminal>.

Returns None if self is a Node::Terminal.

pub fn nonterminal_mut(&mut self) -> Option<&mut NonTerminal>[src]

Get a Option<&mut NonTerminal>.

Returns None if self is a Node::Terminal.

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

Returns whether this node's span is continuous.

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

pub fn terminal_mut(&mut self) -> Option<&mut Terminal>[src]

Get a Option<&mut Terminal>.

Returns None if self is a Node::NonTerminal.

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

Get the node's label.

Returns the part-of-speech for Terminals and the node label for NonTerminals.

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

Set the node's label.

Returns the replaced label.

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

Get this Node's Features.

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

Get this Node'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 a Node's span.

Trait Implementations

impl PartialEq<Node> for Node[src]

impl From<NonTerminal> for Node[src]

impl From<Terminal> for Node[src]

impl Clone for Node[src]

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

Performs copy-assignment from source. Read more

impl Eq for Node[src]

impl Debug for Node[src]

impl Display for Node[src]

Auto Trait Implementations

impl Send for Node

impl Sync for Node

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]