[][src]Struct druid::widget::Stepper

pub struct Stepper { /* fields omitted */ }

A stepper widget for step-wise increasing and decreasing a value.

Implementations

impl Stepper[src]

pub fn new() -> Self[src]

pub fn with_range(self, min: f64, max: f64) -> Self[src]

Set the range covered by this slider.

The default range is std::f64::MIN..std::f64::MAX.

pub fn with_step(self, step: f64) -> Self[src]

Set the steppers amount by which the value increases or decreases.

The default step is 1.0.

pub fn with_wraparound(self, wrap: bool) -> Self[src]

Set whether the stepper should wrap around the minimum/maximum values.

When wraparound is enabled incrementing above max behaves like this:

  • if the previous value is < max it becomes max
  • if the previous value is = max it becomes min Same logic applies for decrementing

The default is false.

Trait Implementations

impl Default for Stepper[src]

impl Widget<f64> for Stepper[src]

Auto Trait Implementations

impl RefUnwindSafe for Stepper

impl Send for Stepper

impl Sync for Stepper

impl Unpin for Stepper

impl UnwindSafe for Stepper

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.