Enum term_grid::Filling [] [src]

pub enum Filling {
    Spaces(Width),
    Text(String),
}

The text to put in between each pair of columns.

Variants

Spaces(Width)

A certain number of spaces.

Text(String)

The same string, every time.

Trait Implementations

impl Debug for Filling
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for Filling
[src]

fn eq(&self, __arg_0: &Filling) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Filling) -> bool

This method tests for !=.