Struct prettytable::format::LineSeparator[][src]

pub struct LineSeparator { /* fields omitted */ }

Contains the character used for printing a line separator

Implementations

impl LineSeparator[src]

pub fn new(line: char, junc: char, ljunc: char, rjunc: char) -> LineSeparator[src]

Create a new line separator instance where line is the character used to separate 2 lines and junc is the one used for junctions between columns and lines

Trait Implementations

impl Clone for LineSeparator[src]

impl Copy for LineSeparator[src]

impl Debug for LineSeparator[src]

impl Default for LineSeparator[src]

impl Eq for LineSeparator[src]

impl Hash for LineSeparator[src]

impl PartialEq<LineSeparator> for LineSeparator[src]

impl StructuralEq for LineSeparator[src]

impl StructuralPartialEq for LineSeparator[src]

Auto Trait Implementations

impl RefUnwindSafe for LineSeparator

impl Send for LineSeparator

impl Sync for LineSeparator

impl Unpin for LineSeparator

impl UnwindSafe for LineSeparator

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.