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