pub struct PreprocessingOptions {
pub highpass: Option<f64>,
pub lowpass: Option<f64>,
}Expand description
Preprocessing options Note: Preprocessing should be done before DDA analysis, not by this package
Fields§
§highpass: Option<f64>§lowpass: Option<f64>Trait Implementations§
Source§impl Clone for PreprocessingOptions
impl Clone for PreprocessingOptions
Source§fn clone(&self) -> PreprocessingOptions
fn clone(&self) -> PreprocessingOptions
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 moreSource§impl Debug for PreprocessingOptions
impl Debug for PreprocessingOptions
Source§impl<'de> Deserialize<'de> for PreprocessingOptions
impl<'de> Deserialize<'de> for PreprocessingOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PreprocessingOptions
impl RefUnwindSafe for PreprocessingOptions
impl Send for PreprocessingOptions
impl Sync for PreprocessingOptions
impl Unpin for PreprocessingOptions
impl UnwindSafe for PreprocessingOptions
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