pub struct StdifOptions {
pub s_0: f64,
pub b: f64,
pub m_0: f64,
pub a: f64,
}
Expand description
Options for stdif operation
Fields§
§s_0: f64
s_0: f64
-> New deviation
min: -inf, max: inf, default: 50
b: f64
b: f64
-> Weight of new deviation
min: 0, max: 2, default: 0.5
m_0: f64
m_0: f64
-> New mean
min: -inf, max: inf, default: 128
a: f64
a: f64
-> Weight of new mean
min: 0, max: 1, default: 0.5
Trait Implementations§
Source§impl Clone for StdifOptions
impl Clone for StdifOptions
Source§fn clone(&self) -> StdifOptions
fn clone(&self) -> StdifOptions
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 StdifOptions
impl Debug for StdifOptions
Auto Trait Implementations§
impl Freeze for StdifOptions
impl RefUnwindSafe for StdifOptions
impl Send for StdifOptions
impl Sync for StdifOptions
impl Unpin for StdifOptions
impl UnwindSafe for StdifOptions
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