pub enum Filling {
Spaces(Width),
Text(String),
}
Expand description
The text to put in between each pair of columns. This does not include any spaces used when aligning cells.
Variants§
Spaces(Width)
A certain number of spaces should be used as the separator.
Text(String)
An arbitrary string.
"|"
is a common choice.
Trait Implementations§
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