[][src]Enum tptp::syntax::Name

pub enum Name<'a> {
    LowerWord(Cow<'a, str>),
    SingleQuoted(Cow<'a, str>),
    Integer(Cow<'a, str>),
}

One of various types of TPTP identifiers.

Variants

LowerWord(Cow<'a, str>)

An alphanumeric token, like propositional_fact2

SingleQuoted(Cow<'a, str>)

A 'quoted string', quotes included

Integer(Cow<'a, str>)

Integral identifiers of arbitrary size.

Trait Implementations

impl<'a> AsRef<str> for Name<'a>[src]

impl<'a> Clone for Name<'a>[src]

impl<'a> Eq for Name<'a>[src]

impl<'a> Ord for Name<'a>[src]

impl<'a> PartialEq<Name<'a>> for Name<'a>[src]

impl<'a> PartialOrd<Name<'a>> for Name<'a>[src]

impl<'a> Debug for Name<'a>[src]

impl<'a> Display for Name<'a>[src]

impl<'a> Hash for Name<'a>[src]

impl<'a> StructuralPartialEq for Name<'a>[src]

impl<'a> StructuralEq for Name<'a>[src]

Auto Trait Implementations

impl<'a> Send for Name<'a>

impl<'a> Sync for Name<'a>

impl<'a> Unpin for Name<'a>

impl<'a> UnwindSafe for Name<'a>

impl<'a> RefUnwindSafe for Name<'a>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

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]