pub struct GetParamExResult {
pub current_value: f64,
pub min_value: f64,
pub mid_value: f64,
pub max_value: f64,
}Expand description
Each of these values can be negative! They are not normalized.
Fields§
§current_value: f64Current value.
min_value: f64Minimum possible value.
mid_value: f64Center value.
max_value: f64Maximum possible value.
Trait Implementations§
Source§impl Clone for GetParamExResult
impl Clone for GetParamExResult
Source§fn clone(&self) -> GetParamExResult
fn clone(&self) -> GetParamExResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GetParamExResult
Source§impl Debug for GetParamExResult
impl Debug for GetParamExResult
Source§impl PartialEq for GetParamExResult
impl PartialEq for GetParamExResult
Source§fn eq(&self, other: &GetParamExResult) -> bool
fn eq(&self, other: &GetParamExResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetParamExResult
Auto Trait Implementations§
impl Freeze for GetParamExResult
impl RefUnwindSafe for GetParamExResult
impl Send for GetParamExResult
impl Sync for GetParamExResult
impl Unpin for GetParamExResult
impl UnsafeUnpin for GetParamExResult
impl UnwindSafe for GetParamExResult
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