[−][src]Enum libslide::emit::EmitFormat
The format in which a slide grammar should be emitted.
Variants
Canonical, human-readable form.
For example, 1+1
is output as 1 + 1
.
S-expression form.
For example, 1+1
is output as (+ 1 1)
.
LaTeX output form.
For example, (1 + 1)
is output as \left(1 + 1\right)
.
NB: this is not yet implemented.
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]
fn clone(&self) -> EmitFormat
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,