tabled

Struct Panel

Source
pub struct Panel;
Expand description

Panel allows to add a Row which has 1 continues Cell to a Table.

See examples/panel.rs.

Implementations§

Source§

impl Panel

Source

pub fn vertical(column: usize) -> VerticalPanel<&'static str>

Creates an empty vertical row at given index.

use tabled::{Panel, TableIteratorExt};

let data = [[1, 2, 3], [4, 5, 6]];

let table = data.table()
    .with(Panel::vertical(1).text("Tabled Releases"))
    .to_string();

println!("{}", table);

assert_eq!(
    table,
    concat!(
        "+---+-----------------+---+---+\n",
        "| 0 | Tabled Releases | 1 | 2 |\n",
        "+---+                 +---+---+\n",
        "| 1 |                 | 2 | 3 |\n",
        "+---+                 +---+---+\n",
        "| 4 |                 | 5 | 6 |\n",
        "+---+-----------------+---+---+",
    )
)
Source

pub fn horizontal(row: usize) -> HorizontalPanel<&'static str>

Creates an empty horizontal row at given index.

use tabled::{Panel, TableIteratorExt};

let data = [[1, 2, 3], [4, 5, 6]];

let table = data.table()
    .with(Panel::vertical(1))
    .to_string();

println!("{}", table);

assert_eq!(
    table,
    concat!(
        "+---+--+---+---+\n",
        "| 0 |  | 1 | 2 |\n",
        "+---+  +---+---+\n",
        "| 1 |  | 2 | 3 |\n",
        "+---+  +---+---+\n",
        "| 4 |  | 5 | 6 |\n",
        "+---+--+---+---+",
    )
)
Source

pub fn header<S>(text: S) -> Header<S>

Creates an horizontal row at first row.

Source

pub fn footer<S>(text: S) -> Footer<S>

Creates an horizontal row at last row.

Trait Implementations§

Source§

impl Debug for Panel

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Panel

§

impl RefUnwindSafe for Panel

§

impl Send for Panel

§

impl Sync for Panel

§

impl Unpin for Panel

§

impl UnwindSafe for Panel

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.