pub struct ReceiverPdu {
pub pdu_header: PduHeader,
pub entity_id: EntityId,
pub radio_id: u16,
pub receiver_state: u16,
pub padding1: u16,
pub received_power: f32,
pub transmitter_entity_id: EntityId,
pub transmitter_radio_id: u16,
}Expand description
Implemented according to IEEE 1278.1-2012 §7.7.4
Fields§
§pdu_header: PduHeader§entity_id: EntityId§radio_id: u16§receiver_state: u16§padding1: u16§received_power: f32§transmitter_entity_id: EntityId§transmitter_radio_id: u16Trait Implementations§
Source§impl Clone for ReceiverPdu
impl Clone for ReceiverPdu
Source§fn clone(&self) -> ReceiverPdu
fn clone(&self) -> ReceiverPdu
Returns a duplicate 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 ReceiverPdu
impl Debug for ReceiverPdu
Source§impl Default for ReceiverPdu
impl Default for ReceiverPdu
Auto Trait Implementations§
impl Freeze for ReceiverPdu
impl RefUnwindSafe for ReceiverPdu
impl Send for ReceiverPdu
impl Sync for ReceiverPdu
impl Unpin for ReceiverPdu
impl UnwindSafe for ReceiverPdu
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