pub enum RxMode {
Continuous,
Single {
ms: u32,
},
}Variants§
Continuous
Single
Single shot receive. Argument ms indicates how many milliseconds of extra buffer time should
be added to the preamble detection timeout.
Trait Implementations§
impl Copy for RxMode
impl StructuralPartialEq for RxMode
Auto Trait Implementations§
impl Freeze for RxMode
impl RefUnwindSafe for RxMode
impl Send for RxMode
impl Sync for RxMode
impl Unpin for RxMode
impl UnwindSafe for RxMode
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