pub enum PillarStyle {
Thick,
Thin,
}Expand description
A pillar a user can choose at runtime, over whatever the theme draws.
Variants§
Implementations§
Source§impl PillarStyle
impl PillarStyle
Sourcepub fn glyphs(self) -> IconGlyphs
pub fn glyphs(self) -> IconGlyphs
The glyph drawn for this style; ASCII terminals always draw a coloured cell.
Trait Implementations§
Source§impl Clone for PillarStyle
impl Clone for PillarStyle
impl Copy for PillarStyle
Source§impl Debug for PillarStyle
impl Debug for PillarStyle
impl Eq for PillarStyle
Source§impl PartialEq for PillarStyle
impl PartialEq for PillarStyle
impl StructuralPartialEq for PillarStyle
Auto Trait Implementations§
impl Freeze for PillarStyle
impl RefUnwindSafe for PillarStyle
impl Send for PillarStyle
impl Sync for PillarStyle
impl Unpin for PillarStyle
impl UnsafeUnpin for PillarStyle
impl UnwindSafe for PillarStyle
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more