#[repr(u8)]pub enum DecodeMachine {
Show 16 variants
COPROCESSOR = 0,
MATRIX = 1,
TRANSFORM = 2,
FILTER = 3,
_RESERVED_4 = 4,
CORDIC = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
_RESERVED_8 = 8,
_RESERVED_9 = 9,
_RESERVED_a = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}Variants§
COPROCESSOR = 0
Coprocessor
MATRIX = 1
Matrix engine
TRANSFORM = 2
Transform engine
FILTER = 3
Filter engine
_RESERVED_4 = 4
CORDIC = 5
CORDIC engine
_RESERVED_6 = 6
_RESERVED_7 = 7
_RESERVED_8 = 8
_RESERVED_9 = 9
_RESERVED_a = 10
_RESERVED_b = 11
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Source§impl DecodeMachine
impl DecodeMachine
Trait Implementations§
Source§impl Clone for DecodeMachine
impl Clone for DecodeMachine
Source§fn clone(&self) -> DecodeMachine
fn clone(&self) -> DecodeMachine
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 DecodeMachine
impl Debug for DecodeMachine
Source§impl From<DecodeMachine> for u8
impl From<DecodeMachine> for u8
Source§fn from(val: DecodeMachine) -> u8
fn from(val: DecodeMachine) -> u8
Converts to this type from the input type.
Source§impl From<u8> for DecodeMachine
impl From<u8> for DecodeMachine
Source§fn from(val: u8) -> DecodeMachine
fn from(val: u8) -> DecodeMachine
Converts to this type from the input type.
Source§impl Ord for DecodeMachine
impl Ord for DecodeMachine
Source§fn cmp(&self, other: &DecodeMachine) -> Ordering
fn cmp(&self, other: &DecodeMachine) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DecodeMachine
impl PartialEq for DecodeMachine
Source§impl PartialOrd for DecodeMachine
impl PartialOrd for DecodeMachine
impl Copy for DecodeMachine
impl Eq for DecodeMachine
impl StructuralPartialEq for DecodeMachine
Auto Trait Implementations§
impl Freeze for DecodeMachine
impl RefUnwindSafe for DecodeMachine
impl Send for DecodeMachine
impl Sync for DecodeMachine
impl Unpin for DecodeMachine
impl UnwindSafe for DecodeMachine
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