pub enum BoxDrawingType {
Ascii,
Light(BoxDrawingTypeDetail),
Heavy(BoxDrawingTypeDetail),
Double,
Custom(BoxDrawing),
}
Expand description
Box drawing type.
Variants§
Ascii
Ascii style.
Light(BoxDrawingTypeDetail)
Light style BoxDrawingTypeDetail
.
Heavy(BoxDrawingTypeDetail)
Heavy style BoxDrawingTypeDetail
.
Double
Double lines style.
Custom(BoxDrawing)
Custom box drawing BoxDrawing
.
Trait Implementations§
Source§impl Clone for BoxDrawingType
impl Clone for BoxDrawingType
Source§fn clone(&self) -> BoxDrawingType
fn clone(&self) -> BoxDrawingType
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 BoxDrawingType
impl Debug for BoxDrawingType
Source§impl Default for BoxDrawingType
impl Default for BoxDrawingType
Source§impl Hash for BoxDrawingType
impl Hash for BoxDrawingType
Source§impl PartialEq for BoxDrawingType
impl PartialEq for BoxDrawingType
impl Copy for BoxDrawingType
impl Eq for BoxDrawingType
impl StructuralPartialEq for BoxDrawingType
Auto Trait Implementations§
impl Freeze for BoxDrawingType
impl RefUnwindSafe for BoxDrawingType
impl Send for BoxDrawingType
impl Sync for BoxDrawingType
impl Unpin for BoxDrawingType
impl UnwindSafe for BoxDrawingType
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