Enum libtableformat::table::column_break::ColumnBreak[][src]

pub enum ColumnBreak {
    Fixed(usize),
    Minimum(usize),
    Content,
}

Variants

Fixed(usize)
Minimum(usize)
Content

Implementations

impl ColumnBreak[src]

Trait Implementations

impl Clone for ColumnBreak[src]

impl Debug for ColumnBreak[src]

impl FromStr for ColumnBreak[src]

type Err = ParseError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Returns a column break from a string.

Arguments

  • format - The format string describing the break.

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.