tabled::width

Struct Width

Source
pub struct Width;
Expand description

Width allows you to set a min and max width of an object on a Table using different strategies.

It also allows you to set a min and max width for a whole table.

You can apply a min and max strategy at the same time with the same value, the value will be a total table width.

It is an abstract factory.

Beware that borders are not removed when you set a size value to very small. For example if you set size to 0 the table still be rendered but with all content removed.

Also be aware that it doesn’t changes Padding settings nor it considers them.

The function is color aware if a color feature is on.

§Examples

§Cell change

use tabled::{object::Segment, Width, Modify, Style, Table};

let data = ["Hello", "World", "!"];

let table = Table::new(&data)
    .with(Style::markdown())
    .with(Modify::new(Segment::all()).with(Width::truncate(3).suffix("...")));

§Table change

use tabled::{Width, Table};

let table = Table::new(&["Hello World!"]).with(Width::wrap(5));

§Total width

use tabled::{Width, Table};

let table = Table::new(&["Hello World!"])
    .with(Width::wrap(5))
    .with(Width::increase(5));

Implementations§

Source§

impl Width

Source

pub fn wrap<W>(width: W) -> Wrap<W>
where W: Measurment<Width>,

Returns a Wrap structure.

Source

pub fn truncate<W>(width: W) -> Truncate<'static, W>
where W: Measurment<Width>,

Returns a Truncate structure.

Source

pub fn increase<W>(width: W) -> MinWidth<W>
where W: Measurment<Width>,

Returns a MinWidth structure.

Source

pub fn justify<W>(width: W) -> Justify<W>
where W: Measurment<Width>,

Returns a Justify structure.

Source

pub fn list<I>(rows: I) -> WidthList
where I: IntoIterator<Item = usize>,

Create WidthList to set a table width to a constant list of column widths.

Notice if you provide a list with .len() smaller than Table::count_columns then it will have no affect.

Also notice that you must provide values bigger than or equal to a real content width, otherwise it may panic.

§Example
use tabled::{Table, Width};

let data = vec![
    ("Some\ndata", "here", "and here"),
    ("Some\ndata on a next", "line", "right here"),
];

let table = Table::new(data)
    .with(Width::list([20, 10, 12]))
    .to_string();

assert_eq!(
    table,
    "+--------------------+----------+------------+\n\
     | &str               | &str     | &str       |\n\
     +--------------------+----------+------------+\n\
     | Some               | here     | and here   |\n\
     | data               |          |            |\n\
     +--------------------+----------+------------+\n\
     | Some               | line     | right here |\n\
     | data on a next     |          |            |\n\
     +--------------------+----------+------------+"
)

Trait Implementations§

Source§

impl Debug for Width

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Measurment<Width> for Max

Source§

fn measure<R>(&self, records: R, cfg: &GridConfig) -> usize
where R: Records,

Returns a measurment value.
Source§

impl Measurment<Width> for Min

Source§

fn measure<R>(&self, records: R, cfg: &GridConfig) -> usize
where R: Records,

Returns a measurment value.
Source§

impl Measurment<Width> for Percent

Source§

fn measure<R>(&self, records: R, cfg: &GridConfig) -> usize
where R: Records,

Returns a measurment value.

Auto Trait Implementations§

§

impl Freeze for Width

§

impl RefUnwindSafe for Width

§

impl Send for Width

§

impl Sync for Width

§

impl Unpin for Width

§

impl UnwindSafe for Width

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.