pub struct Range {
pub min: Float,
pub max: Float,
}Expand description
Represents a numeric range with minimum and maximum values.
This struct is commonly used for voltage ranges, parameter bounds, and other min/max value pairs in memory component specifications.
Fields§
§min: FloatMinimum value of the range.
max: FloatMaximum value of the range.
Trait Implementations§
impl Copy for Range
impl StructuralPartialEq for Range
Auto Trait Implementations§
impl Freeze for Range
impl RefUnwindSafe for Range
impl Send for Range
impl Sync for Range
impl Unpin for Range
impl UnwindSafe for Range
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