pub enum DerivativeScale {
Identity,
LogTreatment,
LogOutcome,
LogLog,
}Expand description
Scale on which a derivative is reported.
Variants§
Identity
dm/da.
LogTreatment
a * dm/da.
LogOutcome
(1/m) * dm/da.
LogLog
(a/m) * dm/da (elasticity).
Trait Implementations§
Source§impl Clone for DerivativeScale
impl Clone for DerivativeScale
Source§fn clone(&self) -> DerivativeScale
fn clone(&self) -> DerivativeScale
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 DerivativeScale
Source§impl Debug for DerivativeScale
impl Debug for DerivativeScale
impl Eq for DerivativeScale
Source§impl Hash for DerivativeScale
impl Hash for DerivativeScale
Source§impl PartialEq for DerivativeScale
impl PartialEq for DerivativeScale
impl StructuralPartialEq for DerivativeScale
Auto Trait Implementations§
impl Freeze for DerivativeScale
impl RefUnwindSafe for DerivativeScale
impl Send for DerivativeScale
impl Sync for DerivativeScale
impl Unpin for DerivativeScale
impl UnsafeUnpin for DerivativeScale
impl UnwindSafe for DerivativeScale
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