pub struct DDCFIRConfig {
pub coefficients: Vec<i32>,
pub decimation: u32,
}Expand description
Configuration of a FIR filter in the DDC.
Fields§
§coefficients: Vec<i32>FIR filter coefficients.
decimation: u32Decimation factor.
Trait Implementations§
Source§impl Clone for DDCFIRConfig
impl Clone for DDCFIRConfig
Source§fn clone(&self) -> DDCFIRConfig
fn clone(&self) -> DDCFIRConfig
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 DDCFIRConfig
impl Debug for DDCFIRConfig
Source§impl<'de> Deserialize<'de> for DDCFIRConfig
impl<'de> Deserialize<'de> for DDCFIRConfig
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
Source§impl PartialEq for DDCFIRConfig
impl PartialEq for DDCFIRConfig
Source§impl Serialize for DDCFIRConfig
impl Serialize for DDCFIRConfig
impl Eq for DDCFIRConfig
impl StructuralPartialEq for DDCFIRConfig
Auto Trait Implementations§
impl Freeze for DDCFIRConfig
impl RefUnwindSafe for DDCFIRConfig
impl Send for DDCFIRConfig
impl Sync for DDCFIRConfig
impl Unpin for DDCFIRConfig
impl UnwindSafe for DDCFIRConfig
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