Enum rv::dist::LogNormalError
source · pub enum LogNormalError {
MuNotFinite {
mu: f64,
},
SigmaTooLow {
sigma: f64,
},
SigmaNotFinite {
sigma: f64,
},
}Variants§
MuNotFinite
The mu parameter is infinite or NaN
SigmaTooLow
The sigma parameter is less than or equal to zero
SigmaNotFinite
The sigma parameter is infinite or NaN
Trait Implementations§
source§impl Clone for LogNormalError
impl Clone for LogNormalError
source§fn clone(&self) -> LogNormalError
fn clone(&self) -> LogNormalError
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 LogNormalError
impl Debug for LogNormalError
source§impl<'de> Deserialize<'de> for LogNormalError
impl<'de> Deserialize<'de> for LogNormalError
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 Display for LogNormalError
impl Display for LogNormalError
source§impl Error for LogNormalError
impl Error for LogNormalError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<LogNormalError> for LogNormalError
impl PartialEq<LogNormalError> for LogNormalError
source§fn eq(&self, other: &LogNormalError) -> bool
fn eq(&self, other: &LogNormalError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for LogNormalError
impl Serialize for LogNormalError
impl StructuralPartialEq for LogNormalError
Auto Trait Implementations§
impl RefUnwindSafe for LogNormalError
impl Send for LogNormalError
impl Sync for LogNormalError
impl Unpin for LogNormalError
impl UnwindSafe for LogNormalError
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
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.