#[repr(u8)]pub enum AhbPodfBusy {
AHB_PODF_BUSY_0 = 0,
AHB_PODF_BUSY_1 = 1,
}Variants§
AHB_PODF_BUSY_0 = 0
divider is not busy and its value represents the actual division.
AHB_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 ahb_podf will be applied.
Implementations§
Source§impl AhbPodfBusy
impl AhbPodfBusy
Trait Implementations§
Source§impl Clone for AhbPodfBusy
impl Clone for AhbPodfBusy
Source§fn clone(&self) -> AhbPodfBusy
fn clone(&self) -> AhbPodfBusy
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 AhbPodfBusy
impl Debug for AhbPodfBusy
Source§impl From<AhbPodfBusy> for u8
impl From<AhbPodfBusy> for u8
Source§fn from(val: AhbPodfBusy) -> u8
fn from(val: AhbPodfBusy) -> u8
Converts to this type from the input type.
Source§impl From<u8> for AhbPodfBusy
impl From<u8> for AhbPodfBusy
Source§fn from(val: u8) -> AhbPodfBusy
fn from(val: u8) -> AhbPodfBusy
Converts to this type from the input type.
Source§impl Ord for AhbPodfBusy
impl Ord for AhbPodfBusy
Source§fn cmp(&self, other: &AhbPodfBusy) -> Ordering
fn cmp(&self, other: &AhbPodfBusy) -> 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 AhbPodfBusy
impl PartialEq for AhbPodfBusy
Source§impl PartialOrd for AhbPodfBusy
impl PartialOrd for AhbPodfBusy
impl Copy for AhbPodfBusy
impl Eq for AhbPodfBusy
impl StructuralPartialEq for AhbPodfBusy
Auto Trait Implementations§
impl Freeze for AhbPodfBusy
impl RefUnwindSafe for AhbPodfBusy
impl Send for AhbPodfBusy
impl Sync for AhbPodfBusy
impl Unpin for AhbPodfBusy
impl UnwindSafe for AhbPodfBusy
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