#[repr(u8)]pub enum StatBusy {
IDLE = 0,
BUSY = 1,
}Variants§
IDLE = 0
The transmitter/receiver for channel pair is currently idle.
BUSY = 1
The transmitter/receiver for channel pair is currently processing data.
Implementations§
Trait Implementations§
Source§impl Ord for StatBusy
impl Ord for StatBusy
Source§impl PartialOrd for StatBusy
impl PartialOrd for StatBusy
impl Copy for StatBusy
impl Eq for StatBusy
impl StructuralPartialEq for StatBusy
Auto Trait Implementations§
impl Freeze for StatBusy
impl RefUnwindSafe for StatBusy
impl Send for StatBusy
impl Sync for StatBusy
impl Unpin for StatBusy
impl UnwindSafe for StatBusy
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