pub struct FloatEntry {
pub default_value: Option<f32>,
pub max: Option<f32>,
pub min: Option<f32>,
}Expand description
Expected floating point entry
Fields§
§default_value: Option<f32>§max: Option<f32>§min: Option<f32>Implementations§
Source§impl FloatEntry
impl FloatEntry
Source§impl FloatEntry
impl FloatEntry
Trait Implementations§
Source§impl Clone for FloatEntry
impl Clone for FloatEntry
Source§fn clone(&self) -> FloatEntry
fn clone(&self) -> FloatEntry
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 FloatEntry
impl Debug for FloatEntry
Source§impl Default for FloatEntry
impl Default for FloatEntry
Source§fn default() -> FloatEntry
fn default() -> FloatEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FloatEntry
impl<'de> Deserialize<'de> for FloatEntry
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
Source§impl PartialEq for FloatEntry
impl PartialEq for FloatEntry
Source§impl Serialize for FloatEntry
impl Serialize for FloatEntry
impl StructuralPartialEq for FloatEntry
Auto Trait Implementations§
impl Freeze for FloatEntry
impl RefUnwindSafe for FloatEntry
impl Send for FloatEntry
impl Sync for FloatEntry
impl Unpin for FloatEntry
impl UnwindSafe for FloatEntry
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