#[repr(u8)]pub enum Seqselselect {
Disable = 0,
Dff = 1,
Jk = 2,
Latch = 3,
Rs = 4,
}
Expand description
Sequential Selection
Value on reset: 0
Variants§
Disable = 0
0: Sequential logic is disabled
Dff = 1
1: D flip flop
Jk = 2
2: JK flip flop
Latch = 3
3: D latch
Rs = 4
4: RS latch
Trait Implementations§
Source§impl Clone for Seqselselect
impl Clone for Seqselselect
Source§fn clone(&self) -> Seqselselect
fn clone(&self) -> Seqselselect
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 Seqselselect
impl Debug for Seqselselect
Source§impl From<Seqselselect> for u8
impl From<Seqselselect> for u8
Source§fn from(variant: Seqselselect) -> Self
fn from(variant: Seqselselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Seqselselect
impl PartialEq for Seqselselect
impl Copy for Seqselselect
impl Eq for Seqselselect
impl IsEnum for Seqselselect
impl StructuralPartialEq for Seqselselect
Auto Trait Implementations§
impl Freeze for Seqselselect
impl RefUnwindSafe for Seqselselect
impl Send for Seqselselect
impl Sync for Seqselselect
impl Unpin for Seqselselect
impl UnwindSafe for Seqselselect
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