#[repr(i32)]pub enum ScaleType {
None = 0,
UnitLinearScale = 1,
UnitLogScale = 2,
UnitReverseLogScale = 3,
}
Expand description
The type of scaling that should be applied to this parameter.
Variants§
None = 0
By default, no scaling is applied.
UnitLinearScale = 1
Scales the feasible space to (0, 1) linearly.
UnitLogScale = 2
Scales the feasible space logarithmically to (0, 1). The entire feasible space must be strictly positive.
UnitReverseLogScale = 3
Scales the feasible space “reverse” logarithmically to (0, 1). The result is that values close to the top of the feasible space are spread out more than points near the bottom. The entire feasible space must be strictly positive.
Implementations§
Trait Implementations§
Source§impl Ord for ScaleType
impl Ord for ScaleType
Source§impl PartialOrd for ScaleType
impl PartialOrd for ScaleType
impl Copy for ScaleType
impl Eq for ScaleType
impl StructuralPartialEq for ScaleType
Auto Trait Implementations§
impl Freeze for ScaleType
impl RefUnwindSafe for ScaleType
impl Send for ScaleType
impl Sync for ScaleType
impl Unpin for ScaleType
impl UnwindSafe for ScaleType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request