pub struct Borders<T = char> {Show 15 fields
pub top: Option<T>,
pub top_left: Option<T>,
pub top_right: Option<T>,
pub top_intersection: Option<T>,
pub bottom: Option<T>,
pub bottom_left: Option<T>,
pub bottom_right: Option<T>,
pub bottom_intersection: Option<T>,
pub horizontal: Option<T>,
pub horizontal_left: Option<T>,
pub horizontal_right: Option<T>,
pub vertical: Option<T>,
pub vertical_left: Option<T>,
pub vertical_right: Option<T>,
pub intersection: Option<T>,
}
Expand description
Borders represents a Table frame with horizontal and vertical split lines.
Fields§
§top: Option<T>
A top horizontal on the frame.
top_left: Option<T>
A top left on the frame.
top_right: Option<T>
A top right on the frame.
top_intersection: Option<T>
A top horizontal intersection on the frame.
bottom: Option<T>
A bottom horizontal on the frame.
bottom_left: Option<T>
A bottom left on the frame.
bottom_right: Option<T>
A bottom right on the frame.
bottom_intersection: Option<T>
A bottom horizontal intersection on the frame.
horizontal: Option<T>
A horizontal split.
horizontal_left: Option<T>
A horizontal split on the left frame line.
horizontal_right: Option<T>
A horizontal split on the right frame line.
vertical: Option<T>
A vertical split.
vertical_left: Option<T>
A vertical split on the left frame line.
vertical_right: Option<T>
A vertical split on the right frame line.
intersection: Option<T>
A top left charcter on the frame.
Implementations§
Source§impl<T> Borders<T>
impl<T> Borders<T>
Sourcepub const fn has_bottom(&self) -> bool
pub const fn has_bottom(&self) -> bool
Verifies if borders has bottom line set on the frame.
Sourcepub const fn has_horizontal(&self) -> bool
pub const fn has_horizontal(&self) -> bool
Verifies if borders has horizontal lines set.
Sourcepub const fn has_vertical(&self) -> bool
pub const fn has_vertical(&self) -> bool
Verifies if borders has vertical lines set.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Borders<T>where
T: Freeze,
impl<T> RefUnwindSafe for Borders<T>where
T: RefUnwindSafe,
impl<T> Send for Borders<T>where
T: Send,
impl<T> Sync for Borders<T>where
T: Sync,
impl<T> Unpin for Borders<T>where
T: Unpin,
impl<T> UnwindSafe for Borders<T>where
T: UnwindSafe,
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