#[repr(u8)]pub enum Drt {
ZERO = 0,
ONE = 1,
}Variants§
ZERO = 0
Receive path operates independently of transmit (i.e., full-duplex mode). Can also be used to monitor transmit activity in half-duplex mode.
ONE = 1
Disable reception of frames while transmitting. (Normally used for half-duplex mode.)
Implementations§
Trait Implementations§
Source§impl Ord for Drt
impl Ord for Drt
Source§impl PartialOrd for Drt
impl PartialOrd for Drt
impl Copy for Drt
impl Eq for Drt
impl StructuralPartialEq for Drt
Auto Trait Implementations§
impl Freeze for Drt
impl RefUnwindSafe for Drt
impl Send for Drt
impl Sync for Drt
impl Unpin for Drt
impl UnwindSafe for Drt
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