pub struct Line {
pub begin: Cow<'static, str>,
pub fill: Cow<'static, str>,
pub separator: Cow<'static, str>,
pub end: Cow<'static, str>,
}Expand description
Horizontal line descriptor.
Fields§
§begin: Cow<'static, str>Characters printed before the first column.
fill: Cow<'static, str>Characters used to fill the gap above/below a column.
separator: Cow<'static, str>Characters placed between columns.
end: Cow<'static, str>Characters printed after the last column.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Line
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnwindSafe for Line
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