pub enum Busy {
Idle = 0,
Busy = 1,
}Expand description
Busy status for the primary channel pair. Other BUSY flags may be found in the STAT register for each channel pair.
Value on reset: 0
Variants§
Idle = 0
0: The transmitter/receiver for channel pair is currently idle.
Busy = 1
1: The transmitter/receiver for channel pair is currently processing data.
Trait Implementations§
impl Copy for Busy
impl Eq for Busy
impl StructuralPartialEq for Busy
Auto Trait Implementations§
impl Freeze for Busy
impl RefUnwindSafe for Busy
impl Send for Busy
impl Sync for Busy
impl Unpin for Busy
impl UnwindSafe for Busy
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