#[repr(u8)]pub enum Filterselect {
Default = 0,
Lbfilt = 1,
Hbfilt = 2,
Hdfilt = 3,
}
Expand description
Proportional Integral Filter Selection
Value on reset: 0
Variants§
Default = 0
0: Default filter mode
Lbfilt = 1
1: Low bandwidth filter
Hbfilt = 2
2: High bandwidth filter
Hdfilt = 3
3: High damping filter
Trait Implementations§
Source§impl Clone for Filterselect
impl Clone for Filterselect
Source§fn clone(&self) -> Filterselect
fn clone(&self) -> Filterselect
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 Filterselect
impl Debug for Filterselect
Source§impl From<Filterselect> for u8
impl From<Filterselect> for u8
Source§fn from(variant: Filterselect) -> Self
fn from(variant: Filterselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Filterselect
impl PartialEq for Filterselect
impl Copy for Filterselect
impl Eq for Filterselect
impl IsEnum for Filterselect
impl StructuralPartialEq for Filterselect
Auto Trait Implementations§
impl Freeze for Filterselect
impl RefUnwindSafe for Filterselect
impl Send for Filterselect
impl Sync for Filterselect
impl Unpin for Filterselect
impl UnwindSafe for Filterselect
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