pub enum ActivationStyle {
Regular,
Sticky,
}
Expand description
Style of activating a layer.
Variants§
Regular
Regular layer activation.
Sticky
Sticky layer activation.
Sticky layer activation is similar to sticky key modifiers. The sticky layer activation is implemented using the sticky layer modifier key.
Trait Implementations§
Source§impl Clone for ActivationStyle
impl Clone for ActivationStyle
Source§fn clone(&self) -> ActivationStyle
fn clone(&self) -> ActivationStyle
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 ActivationStyle
impl Debug for ActivationStyle
Source§impl PartialEq for ActivationStyle
impl PartialEq for ActivationStyle
impl Copy for ActivationStyle
impl StructuralPartialEq for ActivationStyle
Auto Trait Implementations§
impl Freeze for ActivationStyle
impl RefUnwindSafe for ActivationStyle
impl Send for ActivationStyle
impl Sync for ActivationStyle
impl Unpin for ActivationStyle
impl UnwindSafe for ActivationStyle
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