[][src]Struct egui::demos::Sliders

pub struct Sliders {
    pub min: f64,
    pub max: f64,
    pub logarithmic: bool,
    pub smart_aim: bool,
    pub integer: bool,
    pub value: f64,
}

Showcase sliders

Fields

min: f64max: f64logarithmic: boolsmart_aim: boolinteger: boolvalue: f64

Implementations

impl Sliders[src]

pub fn ui(&mut self, ui: &mut Ui)[src]

Trait Implementations

impl Default for Sliders[src]

Auto Trait Implementations

impl RefUnwindSafe for Sliders

impl Send for Sliders

impl Sync for Sliders

impl Unpin for Sliders

impl UnwindSafe for Sliders

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, 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.