[][src]Enum orgize::elements::TableRow

pub enum TableRow {
    Header,
    Body,
    HeaderRule,
    BodyRule,
}

Table Row Element

Syntax

|   0 |   1 |   2 | <- TableRow::Body
|   0 |   1 |   2 | <- TableRow::Body
|-----+-----+-----| <- ignores
|   0 |   1 |   2 | <- TableRow::Header
|   0 |   1 |   2 | <- TableRow::Header
|-----+-----+-----| <- TableRow::HeaderRule
|   0 |   1 |   2 | <- TableRow::Body
|-----+-----+-----| <- TableRow::BodyRule
|   0 |   1 |   2 | <- TableRow::Body
|-----+-----+-----| <- TableRow::BodyRule
|-----+-----+-----| <- TableRow::BodyRule
|   0 |   1 |   2 | <- TableRow::Body
|-----+-----+-----| <- ignores

Variants

Header

This row is part of table header

Body

This row is part of table body

HeaderRule

This row is between table header and body

BodyRule

This row is between table body and next body

Trait Implementations

impl Clone for TableRow[src]

impl Debug for TableRow[src]

impl<'a> From<TableRow> for Element<'a>[src]

impl Serialize for TableRow[src]

Auto Trait Implementations

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.