pub enum RicingMode {
Off,
Default,
Force,
}Expand description
User-customization mode controlled by the AZ_RICING env var.
See the module-level documentation for the full description.
Variants§
Off
AZ_RICING=off (or disabled / none / 0). Skip the user
CSS file and the riced-desktop sources. Vanilla detection.
Default
Unset. Load the user CSS if present; standard detection chain
(KDE > GNOME > riced > defaults on Linux).
Force
AZ_RICING=force (or prefer / aggressive / 1). Reorder
the Linux detection chain so riced-desktop sources win over
GNOME/KDE. The user CSS file still loads.
Trait Implementations§
Source§impl Clone for RicingMode
impl Clone for RicingMode
Source§fn clone(&self) -> RicingMode
fn clone(&self) -> RicingMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RicingMode
impl Debug for RicingMode
Source§impl Default for RicingMode
impl Default for RicingMode
Source§impl PartialEq for RicingMode
impl PartialEq for RicingMode
Source§fn eq(&self, other: &RicingMode) -> bool
fn eq(&self, other: &RicingMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RicingMode
impl Eq for RicingMode
impl StructuralPartialEq for RicingMode
Auto Trait Implementations§
impl Freeze for RicingMode
impl RefUnwindSafe for RicingMode
impl Send for RicingMode
impl Sync for RicingMode
impl Unpin for RicingMode
impl UnsafeUnpin for RicingMode
impl UnwindSafe for RicingMode
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