pub enum BlankingSource {
None,
Blank1,
Blank2,
Blank3,
}Expand description
Blanking source selection.
Blanking allows masking the comparator output during specific timer events to avoid false triggering during switching noise.
Variants§
None
No blanking.
Blank1
Timer blanking source 1 (check datasheet for specific timer mapping).
Blank2
Timer blanking source 2 (check datasheet for specific timer mapping).
Blank3
Timer blanking source 3 (check datasheet for specific timer mapping).
Trait Implementations§
Source§impl Clone for BlankingSource
impl Clone for BlankingSource
Source§fn clone(&self) -> BlankingSource
fn clone(&self) -> BlankingSource
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 BlankingSource
impl Debug for BlankingSource
Source§impl Default for BlankingSource
impl Default for BlankingSource
Source§fn default() -> BlankingSource
fn default() -> BlankingSource
Returns the “default value” for a type. Read more
Source§impl Format for BlankingSource
impl Format for BlankingSource
Source§impl PartialEq for BlankingSource
impl PartialEq for BlankingSource
impl Copy for BlankingSource
impl Eq for BlankingSource
impl StructuralPartialEq for BlankingSource
Auto Trait Implementations§
impl Freeze for BlankingSource
impl RefUnwindSafe for BlankingSource
impl Send for BlankingSource
impl Sync for BlankingSource
impl Unpin for BlankingSource
impl UnwindSafe for BlankingSource
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