pub enum AwdFilterConfig {
Bypass,
FastSinc(AwdFilterOsr),
Sinc1(AwdFilterOsr),
Sinc2(AwdFilterOsr),
Sinc3(AwdFilterOsr),
}Expand description
Filter order of the analog watchdog’s fast filter.
Variants§
Bypass
Filter bypassed
FastSinc(AwdFilterOsr)
FastSinc Filter
Sinc1(AwdFilterOsr)
Sinc1 filter
Sinc2(AwdFilterOsr)
Sinc2 filter
Sinc3(AwdFilterOsr)
Sinc3 filter
Trait Implementations§
Source§impl Clone for AwdFilterConfig
impl Clone for AwdFilterConfig
Source§fn clone(&self) -> AwdFilterConfig
fn clone(&self) -> AwdFilterConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AwdFilterConfig
Source§impl Debug for AwdFilterConfig
impl Debug for AwdFilterConfig
impl Eq for AwdFilterConfig
Source§impl From<AwdFilterConfig> for AwdFilterOrder
impl From<AwdFilterConfig> for AwdFilterOrder
Source§fn from(value: AwdFilterConfig) -> Self
fn from(value: AwdFilterConfig) -> Self
Converts to this type from the input type.
Source§impl From<AwdFilterConfig> for AwdFilterOsr
impl From<AwdFilterConfig> for AwdFilterOsr
Source§fn from(value: AwdFilterConfig) -> Self
fn from(value: AwdFilterConfig) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AwdFilterConfig
impl PartialEq for AwdFilterConfig
impl StructuralPartialEq for AwdFilterConfig
Auto Trait Implementations§
impl Freeze for AwdFilterConfig
impl RefUnwindSafe for AwdFilterConfig
impl Send for AwdFilterConfig
impl Sync for AwdFilterConfig
impl Unpin for AwdFilterConfig
impl UnsafeUnpin for AwdFilterConfig
impl UnwindSafe for AwdFilterConfig
Blanket Implementations§
impl<T, I> Binding<I, NoHandler<I>> for T
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