pub enum FloatStrategy {
Exact(f64),
Range {
min: f64,
max: f64,
},
}Variants§
Auto Trait Implementations§
impl Freeze for FloatStrategy
impl RefUnwindSafe for FloatStrategy
impl Send for FloatStrategy
impl Sync for FloatStrategy
impl Unpin for FloatStrategy
impl UnsafeUnpin for FloatStrategy
impl UnwindSafe for FloatStrategy
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