[][src]Enum latex::ParagraphElement

pub enum ParagraphElement {
    Plain(String),
    Bold(Box<ParagraphElement>),
    Italic(Box<ParagraphElement>),
    InlineMath(String),
}

The various paragraph elements.

For convenience, you can convert from a string to a ParagraphElement using into().

Variants

Plain(String)

A plain string.

Bold(Box<ParagraphElement>)

Bolded text.

Italic(Box<ParagraphElement>)

Italicized text.

InlineMath(String)

An inline mathematical expression.

Methods

impl ParagraphElement[src]

pub fn italic<E>(elem: E) -> ParagraphElement where
    E: Into<ParagraphElement>, 
[src]

Convenience method for wrapping a ParagraphElement in an italics tag.

pub fn bold<E>(elem: E) -> ParagraphElement where
    E: Into<ParagraphElement>, 
[src]

Convenience method for wrapping a ParagraphElement in a bold tag.

Trait Implementations

impl Clone for ParagraphElement[src]

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

Performs copy-assignment from source. Read more

impl<'a> From<&'a str> for ParagraphElement[src]

impl PartialEq<ParagraphElement> for ParagraphElement[src]

impl Debug for ParagraphElement[src]

Auto Trait Implementations

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, 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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