pub struct SemanticsNumeric {
pub value: Option<f64>,
pub min: Option<f64>,
pub max: Option<f64>,
pub step: Option<f64>,
pub jump: Option<f64>,
}Fields§
§value: Option<f64>§min: Option<f64>§max: Option<f64>§step: Option<f64>§jump: Option<f64>Trait Implementations§
Source§impl Clone for SemanticsNumeric
impl Clone for SemanticsNumeric
Source§fn clone(&self) -> SemanticsNumeric
fn clone(&self) -> SemanticsNumeric
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 SemanticsNumeric
impl Debug for SemanticsNumeric
Source§impl Default for SemanticsNumeric
impl Default for SemanticsNumeric
Source§fn default() -> SemanticsNumeric
fn default() -> SemanticsNumeric
Returns the “default value” for a type. Read more
Source§impl PartialEq for SemanticsNumeric
impl PartialEq for SemanticsNumeric
impl Copy for SemanticsNumeric
impl StructuralPartialEq for SemanticsNumeric
Auto Trait Implementations§
impl Freeze for SemanticsNumeric
impl RefUnwindSafe for SemanticsNumeric
impl Send for SemanticsNumeric
impl Sync for SemanticsNumeric
impl Unpin for SemanticsNumeric
impl UnsafeUnpin for SemanticsNumeric
impl UnwindSafe for SemanticsNumeric
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