#[repr(u8)]pub enum PeriphClkSelBusy {
PERIPH_CLK_SEL_BUSY_0 = 0,
PERIPH_CLK_SEL_BUSY_1 = 1,
}Variants§
PERIPH_CLK_SEL_BUSY_0 = 0
mux is not busy and its value represents the actual division.
PERIPH_CLK_SEL_BUSY_1 = 1
mux is busy with handshake process with module. The value read in the periph_clk_sel represents the previous value of select, and after the handshake periph_clk_sel value will be applied.
Implementations§
Trait Implementations§
Source§impl Clone for PeriphClkSelBusy
impl Clone for PeriphClkSelBusy
Source§fn clone(&self) -> PeriphClkSelBusy
fn clone(&self) -> PeriphClkSelBusy
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 PeriphClkSelBusy
impl Debug for PeriphClkSelBusy
Source§impl From<PeriphClkSelBusy> for u8
impl From<PeriphClkSelBusy> for u8
Source§fn from(val: PeriphClkSelBusy) -> u8
fn from(val: PeriphClkSelBusy) -> u8
Converts to this type from the input type.
Source§impl From<u8> for PeriphClkSelBusy
impl From<u8> for PeriphClkSelBusy
Source§fn from(val: u8) -> PeriphClkSelBusy
fn from(val: u8) -> PeriphClkSelBusy
Converts to this type from the input type.
Source§impl Ord for PeriphClkSelBusy
impl Ord for PeriphClkSelBusy
Source§fn cmp(&self, other: &PeriphClkSelBusy) -> Ordering
fn cmp(&self, other: &PeriphClkSelBusy) -> 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 PeriphClkSelBusy
impl PartialEq for PeriphClkSelBusy
Source§impl PartialOrd for PeriphClkSelBusy
impl PartialOrd for PeriphClkSelBusy
impl Copy for PeriphClkSelBusy
impl Eq for PeriphClkSelBusy
impl StructuralPartialEq for PeriphClkSelBusy
Auto Trait Implementations§
impl Freeze for PeriphClkSelBusy
impl RefUnwindSafe for PeriphClkSelBusy
impl Send for PeriphClkSelBusy
impl Sync for PeriphClkSelBusy
impl Unpin for PeriphClkSelBusy
impl UnwindSafe for PeriphClkSelBusy
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