Enum stm32wlxx_hal::subghz::HeaderType
source · pub enum HeaderType {
Fixed,
Variable,
}
Expand description
Packet header type.
Argument of GenericPacketParams::set_header_type
and
LoRaPacketParams::set_header_type
.
Variants§
Fixed
Fixed; payload length and header field not added to packet.
Variable
Variable; payload length and header field added to packet.
Trait Implementations§
source§impl Clone for HeaderType
impl Clone for HeaderType
source§fn clone(&self) -> HeaderType
fn clone(&self) -> HeaderType
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 HeaderType
impl Debug for HeaderType
source§impl PartialEq for HeaderType
impl PartialEq for HeaderType
source§fn eq(&self, other: &HeaderType) -> bool
fn eq(&self, other: &HeaderType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for HeaderType
impl Eq for HeaderType
impl StructuralEq for HeaderType
impl StructuralPartialEq for HeaderType
Auto Trait Implementations§
impl RefUnwindSafe for HeaderType
impl Send for HeaderType
impl Sync for HeaderType
impl Unpin for HeaderType
impl UnwindSafe for HeaderType
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