pub struct ExponentialDist {
pub lambda: f64,
}Expand description
Exponential distribution.
Fields§
§lambda: f64Implementations§
Trait Implementations§
Source§impl Clone for ExponentialDist
impl Clone for ExponentialDist
Source§fn clone(&self) -> ExponentialDist
fn clone(&self) -> ExponentialDist
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 ExponentialDist
impl RefUnwindSafe for ExponentialDist
impl Send for ExponentialDist
impl Sync for ExponentialDist
impl Unpin for ExponentialDist
impl UnsafeUnpin for ExponentialDist
impl UnwindSafe for ExponentialDist
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