pub enum FrequencyBand {
Show 13 variants
HF,
VHF,
UHF,
L,
S,
C,
X,
Ku,
K,
Ka,
V,
W,
G,
}Expand description
IEEE letter codes for frequency bands commonly used for satellite communications.
Variants§
HF
HF (High Frequency) – 3 to 30 MHz
VHF
VHF (Very High Frequency) – 30 to 300 MHz
UHF
UHF (Ultra-High Frequency) – 0.3 to 1 GHz
L
L – 1 to 2 GHz
S
S – 2 to 4 GHz
C
C – 4 to 8 GHz
X
X – 8 to 12 GHz
Ku
Kᵤ – 12 to 18 GHz
K
K – 18 to 27 GHz
Ka
Kₐ – 27 to 40 GHz
V
V – 40 to 75 GHz
W
W – 75 to 110 GHz
G
G – 110 to 300 GHz
Trait Implementations§
Source§impl Clone for FrequencyBand
impl Clone for FrequencyBand
Source§fn clone(&self) -> FrequencyBand
fn clone(&self) -> FrequencyBand
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 FrequencyBand
impl Debug for FrequencyBand
Source§impl Ord for FrequencyBand
impl Ord for FrequencyBand
Source§fn cmp(&self, other: &FrequencyBand) -> Ordering
fn cmp(&self, other: &FrequencyBand) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FrequencyBand
impl PartialEq for FrequencyBand
Source§impl PartialOrd for FrequencyBand
impl PartialOrd for FrequencyBand
impl Copy for FrequencyBand
impl Eq for FrequencyBand
impl StructuralPartialEq for FrequencyBand
Auto Trait Implementations§
impl Freeze for FrequencyBand
impl RefUnwindSafe for FrequencyBand
impl Send for FrequencyBand
impl Sync for FrequencyBand
impl Unpin for FrequencyBand
impl UnsafeUnpin for FrequencyBand
impl UnwindSafe for FrequencyBand
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