pub struct MicEDevice {
pub manufacturer: String,
pub model: String,
}Expand description
Manufacturer and model of the radio that generated this MIC-E packet, decoded from the manufacturer prefix/suffix bytes in the info field.
Fields§
§manufacturer: String§model: StringTrait Implementations§
Source§impl Clone for MicEDevice
impl Clone for MicEDevice
Source§fn clone(&self) -> MicEDevice
fn clone(&self) -> MicEDevice
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MicEDevice
impl Debug for MicEDevice
Source§impl PartialEq for MicEDevice
impl PartialEq for MicEDevice
Source§fn eq(&self, other: &MicEDevice) -> bool
fn eq(&self, other: &MicEDevice) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MicEDevice
impl StructuralPartialEq for MicEDevice
Auto Trait Implementations§
impl Freeze for MicEDevice
impl RefUnwindSafe for MicEDevice
impl Send for MicEDevice
impl Sync for MicEDevice
impl Unpin for MicEDevice
impl UnsafeUnpin for MicEDevice
impl UnwindSafe for MicEDevice
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