pub struct TableFormatter {
pub rows: Vec<Vec<String>>,
pub sep: String,
}Expand description
A column-aligned table formatter.
Fields§
§rows: Vec<Vec<String>>Rows of the table
sep: StringColumn separator
Implementations§
Auto Trait Implementations§
impl Freeze for TableFormatter
impl RefUnwindSafe for TableFormatter
impl Send for TableFormatter
impl Sync for TableFormatter
impl Unpin for TableFormatter
impl UnsafeUnpin for TableFormatter
impl UnwindSafe for TableFormatter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more