pub enum FieldValueModifier {
None,
Log1p,
Log2p,
Ln1p,
Ln2p,
Sqrt,
Square,
Reciprocal,
}Expand description
Modifier for field_value_factor.
Variants§
Trait Implementations§
Source§impl Clone for FieldValueModifier
impl Clone for FieldValueModifier
Source§fn clone(&self) -> FieldValueModifier
fn clone(&self) -> FieldValueModifier
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 moreSource§impl Debug for FieldValueModifier
impl Debug for FieldValueModifier
Source§impl PartialEq for FieldValueModifier
impl PartialEq for FieldValueModifier
Source§fn eq(&self, other: &FieldValueModifier) -> bool
fn eq(&self, other: &FieldValueModifier) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FieldValueModifier
Auto Trait Implementations§
impl Freeze for FieldValueModifier
impl RefUnwindSafe for FieldValueModifier
impl Send for FieldValueModifier
impl Sync for FieldValueModifier
impl Unpin for FieldValueModifier
impl UnsafeUnpin for FieldValueModifier
impl UnwindSafe for FieldValueModifier
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more