pub struct CountryTriplet {
pub first_channel: u8,
pub num_channels: u8,
pub max_power: u8,
}Expand description
A regulatory triplet within a Country IE.
Fields§
§first_channel: u8First channel number.
num_channels: u8Number of channels.
max_power: u8Maximum transmit power (dBm).
Trait Implementations§
Source§impl Clone for CountryTriplet
impl Clone for CountryTriplet
Source§fn clone(&self) -> CountryTriplet
fn clone(&self) -> CountryTriplet
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 CountryTriplet
impl Debug for CountryTriplet
Source§impl PartialEq for CountryTriplet
impl PartialEq for CountryTriplet
impl Eq for CountryTriplet
impl StructuralPartialEq for CountryTriplet
Auto Trait Implementations§
impl Freeze for CountryTriplet
impl RefUnwindSafe for CountryTriplet
impl Send for CountryTriplet
impl Sync for CountryTriplet
impl Unpin for CountryTriplet
impl UnsafeUnpin for CountryTriplet
impl UnwindSafe for CountryTriplet
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