pub struct SliderProps {
pub value: f64,
pub min: f64,
pub max: f64,
pub step: Option<f64>,
pub enabled: bool,
}Fields§
§value: f64§min: f64§max: f64§step: Option<f64>§enabled: boolTrait Implementations§
Source§impl Clone for SliderProps
impl Clone for SliderProps
Source§fn clone(&self) -> SliderProps
fn clone(&self) -> SliderProps
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 SliderProps
impl Debug for SliderProps
Source§impl Default for SliderProps
impl Default for SliderProps
Source§impl PartialEq for SliderProps
impl PartialEq for SliderProps
Source§fn eq(&self, other: &SliderProps) -> bool
fn eq(&self, other: &SliderProps) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SliderProps
Auto Trait Implementations§
impl Freeze for SliderProps
impl RefUnwindSafe for SliderProps
impl Send for SliderProps
impl Sync for SliderProps
impl Unpin for SliderProps
impl UnsafeUnpin for SliderProps
impl UnwindSafe for SliderProps
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