pub enum Bandwidth {
OdrHalf = 0,
OdrQuarter = 1,
}
Expand description
Digital low‑pass bandwidth selection. The cutoff is relative to ODR.
OdrHalf
: fc ≈ ODR/2 (wider bandwidth)OdrQuarter
: fc ≈ ODR/4 (narrower bandwidth)
Variants§
Trait Implementations§
impl Copy for Bandwidth
impl StructuralPartialEq for Bandwidth
Auto Trait Implementations§
impl Freeze for Bandwidth
impl RefUnwindSafe for Bandwidth
impl Send for Bandwidth
impl Sync for Bandwidth
impl Unpin for Bandwidth
impl UnwindSafe for Bandwidth
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