#[repr(u8)]pub enum Dspmramclkdiv {
DSP_CLK_DIV_BY_1 = 0,
DSP_CLK_DIV_BY_2 = 1,
DSP_CLK_DIV_BY_3 = 2,
DSP_CLK_DIV_BY_4 = 3,
}Variants§
DSP_CLK_DIV_BY_1 = 0
DSP MAINRAM Clk = DSP Core CLK / 1.
DSP_CLK_DIV_BY_2 = 1
DSP MAINRAM Clk = DSP Core CLK / 2.
DSP_CLK_DIV_BY_3 = 2
DSP MAINRAM Clk = DSP Core CLK / 3.
DSP_CLK_DIV_BY_4 = 3
DSP MAINRAM Clk = DSP Core CLK / 4.
Implementations§
Source§impl Dspmramclkdiv
impl Dspmramclkdiv
Trait Implementations§
Source§impl Clone for Dspmramclkdiv
impl Clone for Dspmramclkdiv
Source§fn clone(&self) -> Dspmramclkdiv
fn clone(&self) -> Dspmramclkdiv
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 Dspmramclkdiv
impl Debug for Dspmramclkdiv
Source§impl From<Dspmramclkdiv> for u8
impl From<Dspmramclkdiv> for u8
Source§fn from(val: Dspmramclkdiv) -> u8
fn from(val: Dspmramclkdiv) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Dspmramclkdiv
impl From<u8> for Dspmramclkdiv
Source§fn from(val: u8) -> Dspmramclkdiv
fn from(val: u8) -> Dspmramclkdiv
Converts to this type from the input type.
Source§impl Ord for Dspmramclkdiv
impl Ord for Dspmramclkdiv
Source§fn cmp(&self, other: &Dspmramclkdiv) -> Ordering
fn cmp(&self, other: &Dspmramclkdiv) -> 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 Dspmramclkdiv
impl PartialEq for Dspmramclkdiv
Source§impl PartialOrd for Dspmramclkdiv
impl PartialOrd for Dspmramclkdiv
impl Copy for Dspmramclkdiv
impl Eq for Dspmramclkdiv
impl StructuralPartialEq for Dspmramclkdiv
Auto Trait Implementations§
impl Freeze for Dspmramclkdiv
impl RefUnwindSafe for Dspmramclkdiv
impl Send for Dspmramclkdiv
impl Sync for Dspmramclkdiv
impl Unpin for Dspmramclkdiv
impl UnwindSafe for Dspmramclkdiv
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