pub struct BorderChars {
pub tl: char,
pub t: char,
pub tr: char,
pub l: char,
pub r: char,
pub bl: char,
pub b: char,
pub br: char,
}Expand description
The eight characters that make up a plot border (corners, sides, top/bottom).
Fields§
§tl: charTop-left corner.
t: charTop edge (repeated for the border width).
tr: charTop-right corner.
l: charLeft edge.
r: charRight edge.
bl: charBottom-left corner.
b: charBottom edge (repeated for the border width).
br: charBottom-right corner.
Trait Implementations§
Source§impl Clone for BorderChars
impl Clone for BorderChars
Source§fn clone(&self) -> BorderChars
fn clone(&self) -> BorderChars
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BorderChars
impl Debug for BorderChars
Source§impl PartialEq for BorderChars
impl PartialEq for BorderChars
impl Copy for BorderChars
impl Eq for BorderChars
impl StructuralPartialEq for BorderChars
Auto Trait Implementations§
impl Freeze for BorderChars
impl RefUnwindSafe for BorderChars
impl Send for BorderChars
impl Sync for BorderChars
impl Unpin for BorderChars
impl UnsafeUnpin for BorderChars
impl UnwindSafe for BorderChars
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