#[repr(C)]pub struct MinMaxRange {
pub min: f32,
pub max: f32,
}Expand description
Min/Max Range for numeric conditions (C-compatible)
Fields§
§min: f32Minimum value (NaN = no minimum limit)
max: f32Maximum value (NaN = no maximum limit)
Implementations§
Trait Implementations§
Source§impl Clone for MinMaxRange
impl Clone for MinMaxRange
Source§fn clone(&self) -> MinMaxRange
fn clone(&self) -> MinMaxRange
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 MinMaxRange
impl Debug for MinMaxRange
Source§impl PartialEq for MinMaxRange
impl PartialEq for MinMaxRange
Source§impl PartialOrd for MinMaxRange
impl PartialOrd for MinMaxRange
impl Copy for MinMaxRange
impl StructuralPartialEq for MinMaxRange
Auto Trait Implementations§
impl Freeze for MinMaxRange
impl RefUnwindSafe for MinMaxRange
impl Send for MinMaxRange
impl Sync for MinMaxRange
impl Unpin for MinMaxRange
impl UnwindSafe for MinMaxRange
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