pub enum FieldValueFactorModifier {
None,
Log,
Log1P,
Log2P,
Ln,
Ln1P,
Ln2P,
Square,
Sqrt,
Reciprocal,
}
Expand description
Modifier to apply to the field value
Defaults to none
Variants
None
Do not apply any multiplier to the field value
Log
Take the common logarithm of the field value
Because this function will return a negative value and cause an error if used on values
between 0
and 1
, it is recommended to use log1p
instead.
Log1P
Add 1 to the field value and take the common logarithm
Log2P
Add 2 to the field value and take the common logarithm
Ln
Take the natural logarithm of the field value.
Because this function will return a negative value and cause an error if used on values
between 0
and 1
, it is recommended to use ln1p
instead.
Ln1P
Add 1 to the field value and take the natural logarithm
Ln2P
Add 2 to the field value and take the natural logarithm
Square
Square the field value (multiply it by itself)
Sqrt
Take the square root of the field value
Reciprocal
Reciprocate the field value, same
as 1/x
where x
is the field’s value
Trait Implementations
sourceimpl Clone for FieldValueFactorModifier
impl Clone for FieldValueFactorModifier
sourcefn clone(&self) -> FieldValueFactorModifier
fn clone(&self) -> FieldValueFactorModifier
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FieldValueFactorModifier
impl Debug for FieldValueFactorModifier
sourceimpl Ord for FieldValueFactorModifier
impl Ord for FieldValueFactorModifier
sourceimpl PartialOrd<FieldValueFactorModifier> for FieldValueFactorModifier
impl PartialOrd<FieldValueFactorModifier> for FieldValueFactorModifier
sourcefn partial_cmp(&self, other: &FieldValueFactorModifier) -> Option<Ordering>
fn partial_cmp(&self, other: &FieldValueFactorModifier) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for FieldValueFactorModifier
impl Serialize for FieldValueFactorModifier
impl Copy for FieldValueFactorModifier
impl Eq for FieldValueFactorModifier
impl StructuralEq for FieldValueFactorModifier
impl StructuralPartialEq for FieldValueFactorModifier
Auto Trait Implementations
impl RefUnwindSafe for FieldValueFactorModifier
impl Send for FieldValueFactorModifier
impl Sync for FieldValueFactorModifier
impl Unpin for FieldValueFactorModifier
impl UnwindSafe for FieldValueFactorModifier
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more