pub struct SectorInfo {
pub name: String,
pub default_callsign: String,
pub default_airport: String,
pub default_centre_pt: Position<Valid>,
pub n_mi_per_deg_lat: f32,
pub n_mi_per_deg_lon: f32,
pub magnetic_variation: f32,
pub sector_scale: f32,
}Fields§
§name: String§default_callsign: String§default_airport: String§default_centre_pt: Position<Valid>§n_mi_per_deg_lat: f32§n_mi_per_deg_lon: f32§magnetic_variation: f32§sector_scale: f32Trait Implementations§
Source§impl Clone for SectorInfo
impl Clone for SectorInfo
Source§fn clone(&self) -> SectorInfo
fn clone(&self) -> SectorInfo
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for SectorInfo
impl RefUnwindSafe for SectorInfo
impl Send for SectorInfo
impl Sync for SectorInfo
impl Unpin for SectorInfo
impl UnwindSafe for SectorInfo
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