pub struct FloatingPointRange {
pub from_value: f64,
pub to_value: f64,
pub step: f64,
}
Expand description
Fields§
§from_value: f64
§to_value: f64
§step: f64
Trait Implementations§
Source§impl Clone for FloatingPointRange
impl Clone for FloatingPointRange
Source§fn clone(&self) -> FloatingPointRange
fn clone(&self) -> FloatingPointRange
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FloatingPointRange
impl Debug for FloatingPointRange
Source§impl<'de> Deserialize<'de> for FloatingPointRange
impl<'de> Deserialize<'de> for FloatingPointRange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FloatingPointRange
impl RefUnwindSafe for FloatingPointRange
impl Send for FloatingPointRange
impl Sync for FloatingPointRange
impl Unpin for FloatingPointRange
impl UnwindSafe for FloatingPointRange
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