pub enum SpinboxDigitStepDirection {
Right,
Left,
}Expand description
Direction of cursor movement when stepping through digits.
Variants§
Right
Move cursor to the right (toward less significant digits) when stepping.
Left
Move cursor to the left (toward more significant digits) when stepping.
Trait Implementations§
Source§impl Clone for SpinboxDigitStepDirection
impl Clone for SpinboxDigitStepDirection
Source§fn clone(&self) -> SpinboxDigitStepDirection
fn clone(&self) -> SpinboxDigitStepDirection
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 moreimpl Copy for SpinboxDigitStepDirection
Source§impl Debug for SpinboxDigitStepDirection
impl Debug for SpinboxDigitStepDirection
impl Eq for SpinboxDigitStepDirection
impl StructuralPartialEq for SpinboxDigitStepDirection
Auto Trait Implementations§
impl Freeze for SpinboxDigitStepDirection
impl RefUnwindSafe for SpinboxDigitStepDirection
impl Send for SpinboxDigitStepDirection
impl Sync for SpinboxDigitStepDirection
impl Unpin for SpinboxDigitStepDirection
impl UnsafeUnpin for SpinboxDigitStepDirection
impl UnwindSafe for SpinboxDigitStepDirection
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