#[repr(u8)]pub enum Blankselect {
Start = 0,
Rise = 1,
Fall = 2,
Both = 3,
}
Expand description
Fault A Blanking Mode
Value on reset: 0
Variants§
Start = 0
0: Blanking applied from start of the ramp
Rise = 1
1: Blanking applied from rising edge of the output waveform
Fall = 2
2: Blanking applied from falling edge of the output waveform
Both = 3
3: Blanking applied from each toggle of the output waveform
Trait Implementations§
Source§impl Clone for Blankselect
impl Clone for Blankselect
Source§fn clone(&self) -> Blankselect
fn clone(&self) -> Blankselect
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 Blankselect
impl Debug for Blankselect
Source§impl From<Blankselect> for u8
impl From<Blankselect> for u8
Source§fn from(variant: Blankselect) -> Self
fn from(variant: Blankselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Blankselect
impl PartialEq for Blankselect
impl Copy for Blankselect
impl Eq for Blankselect
impl IsEnum for Blankselect
impl StructuralPartialEq for Blankselect
Auto Trait Implementations§
impl Freeze for Blankselect
impl RefUnwindSafe for Blankselect
impl Send for Blankselect
impl Sync for Blankselect
impl Unpin for Blankselect
impl UnwindSafe for Blankselect
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