pub enum Filling {
Spaces(usize),
Text(String),
Tabs {
spaces: usize,
tab_size: usize,
},
}
Expand description
The text to put in between each pair of columns.
This does not include any spaces used when aligning cells.
Variants§
Spaces(usize)
A number of spaces
Text(String)
An arbitrary string
"|"
is a common choice.
Tabs
Fill spaces with \t
Trait Implementations§
impl Eq for Filling
impl StructuralPartialEq for Filling
Auto Trait Implementations§
impl Freeze for Filling
impl RefUnwindSafe for Filling
impl Send for Filling
impl Sync for Filling
impl Unpin for Filling
impl UnwindSafe for Filling
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