pub struct Phg {
pub power_watts: u32,
pub height_feet: u32,
pub gain_db: u8,
pub directivity_deg: u16,
}Expand description
Power-Height-Gain-Directivity data (APRS101 Chapter 7).
PHG provides station RF characteristics for range circle calculations.
Fields§
§power_watts: u32Effective radiated power in watts.
height_feet: u32Antenna height above average terrain in feet.
gain_db: u8Antenna gain in dB.
directivity_deg: u16Antenna directivity in degrees (0 = omni).
Trait Implementations§
impl Eq for Phg
impl StructuralPartialEq for Phg
Auto Trait Implementations§
impl Freeze for Phg
impl RefUnwindSafe for Phg
impl Send for Phg
impl Sync for Phg
impl Unpin for Phg
impl UnwindSafe for Phg
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