Enum comrak::nodes::TableAlignment[][src]

pub enum TableAlignment {
    None,
    Left,
    Center,
    Right,
}

Alignment of a single table cell.

Variants

Cell content is unaligned.

Cell content is aligned left.

Cell content is centered.

Cell content is aligned right.

Trait Implementations

impl Debug for TableAlignment
[src]

Formats the value using the given formatter. Read more

impl Copy for TableAlignment
[src]

impl Clone for TableAlignment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations