pub struct LimitPair {
pub lower: f32,
pub upper: f32,
}Expand description
The limits for a parameter.
Fields§
§lower: f32Lower limit.
upper: f32Upper limit.
Trait Implementations§
source§impl PartialEq<LimitPair> for LimitPair
impl PartialEq<LimitPair> for LimitPair
source§impl ValueConverterTrait<LimitPair> for ValueConverter
impl ValueConverterTrait<LimitPair> for ValueConverter
source§fn into_value(v: LimitPair) -> Value
fn into_value(v: LimitPair) -> Value
Wraps the passed-in value in a
Value enum.source§fn from_value(v: &Value) -> LimitPair
fn from_value(v: &Value) -> LimitPair
Extracts the value from a
Value enum.impl Copy for LimitPair
impl StructuralPartialEq for LimitPair
Auto Trait Implementations§
impl RefUnwindSafe for LimitPair
impl Send for LimitPair
impl Sync for LimitPair
impl Unpin for LimitPair
impl UnwindSafe for LimitPair
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