[][src]Enum term_rewriting::Atom

pub enum Atom {
    Variable(Variable),
    Operator(Operator),
}

Atoms are the parts of a TRS that are not constructed from smaller parts: Variables and Operators.

Variants

Variable(Variable)

The Variable variant of an Atom.

Examples

let mut sig = Signature::default();
let x = sig.new_var(Some("x".to_string()));
let atom = Atom::Variable(x);

assert_eq!(atom.display(), "x_");
Operator(Operator)

The Operator variant of an Atom.

Examples

let mut sig = Signature::default();
let a = sig.new_op(0, Some("A".to_string()));
let atom = Atom::Operator(a);

assert_eq!(atom.display(), "A");

Methods

impl Atom[src]

pub fn display(&self) -> String[src]

Serialize an Atom.

Examples

let mut sig = Signature::default();

let a = sig.new_op(0, Some("A".to_string()));
let atom = Atom::Operator(a);

assert_eq!(atom.display(), "A");

let x = sig.new_var(Some("x".to_string()));
let atom = Atom::Variable(x);

assert_eq!(atom.display(), "x_");

Trait Implementations

impl PartialEq<Atom> for Atom[src]

impl From<Variable> for Atom[src]

impl From<Operator> for Atom[src]

impl Clone for Atom[src]

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

Performs copy-assignment from source. Read more

impl Eq for Atom[src]

impl Debug for Atom[src]

Auto Trait Implementations

impl Send for Atom

impl Sync for Atom

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, 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]