Enum stm32wlxx_hal::subghz::RxTimeoutStop
source · #[repr(u8)]pub enum RxTimeoutStop {
Sync = 0,
Preamble = 1,
}
Expand description
Receiver event which stops the RX timeout timer.
Used by set_rx_timeout_stop
.
Variants§
Sync = 0
Receive timeout stopped on synchronization word detection in generic packet mode or header detection in LoRa packet mode.
Preamble = 1
Receive timeout stopped on preamble detection.
Trait Implementations§
source§impl Clone for RxTimeoutStop
impl Clone for RxTimeoutStop
source§fn clone(&self) -> RxTimeoutStop
fn clone(&self) -> RxTimeoutStop
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 RxTimeoutStop
impl Debug for RxTimeoutStop
source§impl From<RxTimeoutStop> for u8
impl From<RxTimeoutStop> for u8
source§fn from(rx_ts: RxTimeoutStop) -> Self
fn from(rx_ts: RxTimeoutStop) -> Self
Converts to this type from the input type.
source§impl PartialEq for RxTimeoutStop
impl PartialEq for RxTimeoutStop
source§fn eq(&self, other: &RxTimeoutStop) -> bool
fn eq(&self, other: &RxTimeoutStop) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RxTimeoutStop
impl Eq for RxTimeoutStop
impl StructuralEq for RxTimeoutStop
impl StructuralPartialEq for RxTimeoutStop
Auto Trait Implementations§
impl RefUnwindSafe for RxTimeoutStop
impl Send for RxTimeoutStop
impl Sync for RxTimeoutStop
impl Unpin for RxTimeoutStop
impl UnwindSafe for RxTimeoutStop
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