pub struct LogNormalDist {
pub mu: f64,
pub sigma: f64,
}Expand description
Log-Normal distribution.
Fields§
§mu: f64§sigma: f64Implementations§
Trait Implementations§
Source§impl Clone for LogNormalDist
impl Clone for LogNormalDist
Source§fn clone(&self) -> LogNormalDist
fn clone(&self) -> LogNormalDist
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LogNormalDist
impl RefUnwindSafe for LogNormalDist
impl Send for LogNormalDist
impl Sync for LogNormalDist
impl Unpin for LogNormalDist
impl UnsafeUnpin for LogNormalDist
impl UnwindSafe for LogNormalDist
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