pub enum SLV_ACTIVITY_A {
IDLE = 0,
ACTIVE = 1,
}
Expand description
Slave FSM Activity Status. When the Slave Finite State Machine (FSM) is not in the IDLE state, this bit is set. - 0: Slave FSM is in IDLE state so the Slave part of DW_apb_i2c is not Active - 1: Slave FSM is not in IDLE state so the Slave part of DW_apb_i2c is Active Reset value: 0x0
Value on reset: 0
Variants§
Trait Implementations§
Source§impl Clone for SLV_ACTIVITY_A
impl Clone for SLV_ACTIVITY_A
Source§fn clone(&self) -> SLV_ACTIVITY_A
fn clone(&self) -> SLV_ACTIVITY_A
Returns a copy 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 SLV_ACTIVITY_A
impl Debug for SLV_ACTIVITY_A
Source§impl From<SLV_ACTIVITY_A> for bool
impl From<SLV_ACTIVITY_A> for bool
Source§fn from(variant: SLV_ACTIVITY_A) -> Self
fn from(variant: SLV_ACTIVITY_A) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SLV_ACTIVITY_A
impl PartialEq for SLV_ACTIVITY_A
impl Copy for SLV_ACTIVITY_A
impl Eq for SLV_ACTIVITY_A
impl StructuralPartialEq for SLV_ACTIVITY_A
Auto Trait Implementations§
impl Freeze for SLV_ACTIVITY_A
impl RefUnwindSafe for SLV_ACTIVITY_A
impl Send for SLV_ACTIVITY_A
impl Sync for SLV_ACTIVITY_A
impl Unpin for SLV_ACTIVITY_A
impl UnwindSafe for SLV_ACTIVITY_A
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