pub enum TreeGuides {
Ascii,
Unicode,
Bold,
Double,
Rounded,
}Expand description
Guide character styles for tree rendering.
Variants§
Ascii
ASCII guides: |, +--, `--.
Unicode
Unicode box-drawing characters (default).
Bold
Bold Unicode box-drawing characters.
Double
Double-line Unicode characters.
Rounded
Rounded Unicode characters.
Implementations§
Source§impl TreeGuides
impl TreeGuides
Trait Implementations§
Source§impl Clone for TreeGuides
impl Clone for TreeGuides
Source§fn clone(&self) -> TreeGuides
fn clone(&self) -> TreeGuides
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 TreeGuides
impl Debug for TreeGuides
Source§impl Default for TreeGuides
impl Default for TreeGuides
Source§fn default() -> TreeGuides
fn default() -> TreeGuides
Returns the “default value” for a type. Read more
Source§impl PartialEq for TreeGuides
impl PartialEq for TreeGuides
impl Copy for TreeGuides
impl Eq for TreeGuides
impl StructuralPartialEq for TreeGuides
Auto Trait Implementations§
impl Freeze for TreeGuides
impl RefUnwindSafe for TreeGuides
impl Send for TreeGuides
impl Sync for TreeGuides
impl Unpin for TreeGuides
impl UnsafeUnpin for TreeGuides
impl UnwindSafe for TreeGuides
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.