[][src]Enum metac::Data

pub enum Data<'a> {
    Atom(&'a str),
    Command(&'a str),
}

Distinguishes atoms from commands

Variants

Atom(&'a str)

An atom is a single, non-whitespace non-(), connected string of characters

Command(&'a str)

A command represents the contents (including whitespace) inside (), excluding the outer parentheses. It may contain inner ()-characters.

Methods

impl<'a> Data<'a>[src]

pub fn content(&self) -> &'a str[src]

Get the raw string data

Trait Implementations

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

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

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

impl<'a> Copy for Data<'a>[src]

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

Auto Trait Implementations

impl<'a> Unpin for Data<'a>

impl<'a> Send for Data<'a>

impl<'a> Sync for Data<'a>

impl<'a> UnwindSafe for Data<'a>

impl<'a> RefUnwindSafe for Data<'a>

Blanket Implementations

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

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<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.