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