[][src]Enum libslide::EmitFormat

pub enum EmitFormat {
    Pretty,
    SExpression,
    Latex,
    Debug,
}

The format in which a slide grammar should be emitted.

Variants

Pretty

Canonical, human-readable form. For example, 1+1 is output as 1 + 1.

SExpression

S-expression form. For example, 1+1 is output as (+ 1 1).

Latex

LaTeX output form. For example, (1 + 1) is output as \left(1 + 1\right). NB: this is not yet implemented.

Debug

Slide internal debug form. NB: this form is not stable, and no assumptions should be made about it.

Trait Implementations

impl Clone for EmitFormat[src]

impl Copy for EmitFormat[src]

impl From<String> for EmitFormat[src]

Auto Trait Implementations

impl RefUnwindSafe for EmitFormat

impl Send for EmitFormat

impl Sync for EmitFormat

impl Unpin for EmitFormat

impl UnwindSafe for EmitFormat

Blanket Implementations

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

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

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

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