#[non_exhaustive]pub enum IconMode {
Text,
Icons,
MinimalIcons,
}Expand description
Icon mode configurer
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Text
Use text instead of icons
Icons
Use icons from nerdfonts
MinimalIcons
Use alternative icon set (simpler icons, but sometimes hard to get the meaning)
Implementations§
Auto Trait Implementations§
impl Freeze for IconMode
impl RefUnwindSafe for IconMode
impl Send for IconMode
impl Sync for IconMode
impl Unpin for IconMode
impl UnwindSafe for IconMode
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