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