pub struct SweepParam<'a> {
pub name: &'a str,
pub min: f64,
pub max: f64,
pub value: f64,
}Expand description
The parameter controlled by a response sweep.
Fields§
§name: &'a strParameter name used by intent/set-param.
min: f64Minimum slider value.
max: f64Maximum slider value.
value: f64Current slider value.
Auto Trait Implementations§
impl<'a> Freeze for SweepParam<'a>
impl<'a> RefUnwindSafe for SweepParam<'a>
impl<'a> Send for SweepParam<'a>
impl<'a> Sync for SweepParam<'a>
impl<'a> Unpin for SweepParam<'a>
impl<'a> UnsafeUnpin for SweepParam<'a>
impl<'a> UnwindSafe for SweepParam<'a>
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