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