pub enum RegressionMethod {
Linear,
Exponential,
Logarithmic,
Polynomial,
}
Expand description
regression methods supported by ecStat
Variants§
Trait Implementations§
Source§impl Clone for RegressionMethod
impl Clone for RegressionMethod
Source§fn clone(&self) -> RegressionMethod
fn clone(&self) -> RegressionMethod
Returns a copy of the value. Read more
1.0.0 · 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 RegressionMethod
impl Debug for RegressionMethod
Source§impl<'de> Deserialize<'de> for RegressionMethod
impl<'de> Deserialize<'de> for RegressionMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RegressionMethod
impl PartialEq for RegressionMethod
Source§impl Serialize for RegressionMethod
impl Serialize for RegressionMethod
impl StructuralPartialEq for RegressionMethod
Auto Trait Implementations§
impl Freeze for RegressionMethod
impl RefUnwindSafe for RegressionMethod
impl Send for RegressionMethod
impl Sync for RegressionMethod
impl Unpin for RegressionMethod
impl UnwindSafe for RegressionMethod
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