pub struct BorderSet {
pub vertical: char,
pub horizontal: char,
pub top_left: char,
pub top_right: char,
pub bottom_left: char,
pub bottom_right: char,
pub tee_up: char,
pub tee_down: char,
pub tee_left: char,
pub tee_right: char,
pub cross: char,
}Expand description
Border characters for drawing.
Fields§
§vertical: charVertical border character.
horizontal: charHorizontal border character.
top_left: charTop-left corner character.
top_right: charTop-right corner character.
bottom_left: charBottom-left corner character.
bottom_right: charBottom-right corner character.
tee_up: charUpward tee junction character.
tee_down: charDownward tee junction character.
tee_left: charLeftward tee junction character.
tee_right: charRightward tee junction character.
cross: charCross junction character.
Implementations§
Trait Implementations§
impl Copy for BorderSet
impl Eq for BorderSet
impl StructuralPartialEq for BorderSet
Auto Trait Implementations§
impl Freeze for BorderSet
impl RefUnwindSafe for BorderSet
impl Send for BorderSet
impl Sync for BorderSet
impl Unpin for BorderSet
impl UnwindSafe for BorderSet
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.