pub struct LineStyle {
pub horizontal: &'static str,
pub vertical: &'static str,
pub top_left: &'static str,
pub top_right: &'static str,
pub bottom_left: &'static str,
pub bottom_right: &'static str,
pub vertical_right: &'static str,
pub vertical_left: &'static str,
pub horizontal_down: &'static str,
pub horizontal_up: &'static str,
pub cross: &'static str,
}Expand description
Line style for borders and separators.
Fields§
§horizontal: &'static strHorizontal line
vertical: &'static strVertical line
top_left: &'static strTop-left corner
top_right: &'static strTop-right corner
bottom_left: &'static strBottom-left corner
bottom_right: &'static strBottom-right corner
vertical_right: &'static strVertical and right intersection
vertical_left: &'static strVertical and left intersection
horizontal_down: &'static strHorizontal and down intersection
horizontal_up: &'static strHorizontal and up intersection
cross: &'static strCross intersection
Trait Implementations§
impl Copy for LineStyle
impl Eq for LineStyle
impl StructuralPartialEq for LineStyle
Auto Trait Implementations§
impl Freeze for LineStyle
impl RefUnwindSafe for LineStyle
impl Send for LineStyle
impl Sync for LineStyle
impl Unpin for LineStyle
impl UnwindSafe for LineStyle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.