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