pub enum Border {
Horizontal,
Vertical,
TopLeft,
TopRight,
BottomLeft,
BottomRight,
Cross,
TeeUp,
TeeDown,
TeeLeft,
TeeRight,
}
Expand description
UI border characters
Variants§
Horizontal
Horizontal line
Vertical
Vertical line
TopLeft
Top-left corner
TopRight
Top-right corner
BottomLeft
Bottom-left corner
BottomRight
Bottom-right corner
Cross
Cross/intersection
TeeUp
T-junction up
TeeDown
T-junction down
TeeLeft
T-junction left
TeeRight
T-junction right
Trait Implementations§
Source§impl UnicodeProvider for Border
impl UnicodeProvider for Border
impl Copy for Border
Auto Trait Implementations§
impl Freeze for Border
impl RefUnwindSafe for Border
impl Send for Border
impl Sync for Border
impl Unpin for Border
impl UnwindSafe for Border
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