pub struct Sector {Show 17 fields
pub sector_info: SectorInfo,
pub colours: HashMap<String, Colour>,
pub airports: Vec<Airport>,
pub vors: Vec<Vor>,
pub ndbs: Vec<Ndb>,
pub fixes: Vec<Fix>,
pub artcc_entries: Vec<LineGroup<ColouredLine>>,
pub artcc_low_entries: Vec<LineGroup<ColouredLine>>,
pub artcc_high_entries: Vec<LineGroup<ColouredLine>>,
pub low_airways: Vec<LineGroup<ColouredLine>>,
pub high_airways: Vec<LineGroup<ColouredLine>>,
pub sid_entries: Vec<LineGroup<ColouredLine>>,
pub star_entries: Vec<LineGroup<ColouredLine>>,
pub geo_entries: Vec<LineGroup<ColouredLine>>,
pub regions: Vec<RegionGroup>,
pub labels: Vec<LabelGroup>,
pub non_critical_errors: Vec<(usize, String, Error)>,
}Fields§
§sector_info: SectorInfo§colours: HashMap<String, Colour>§airports: Vec<Airport>§vors: Vec<Vor>§ndbs: Vec<Ndb>§fixes: Vec<Fix>§artcc_entries: Vec<LineGroup<ColouredLine>>§artcc_low_entries: Vec<LineGroup<ColouredLine>>§artcc_high_entries: Vec<LineGroup<ColouredLine>>§low_airways: Vec<LineGroup<ColouredLine>>§high_airways: Vec<LineGroup<ColouredLine>>§sid_entries: Vec<LineGroup<ColouredLine>>§star_entries: Vec<LineGroup<ColouredLine>>§geo_entries: Vec<LineGroup<ColouredLine>>§regions: Vec<RegionGroup>§labels: Vec<LabelGroup>§non_critical_errors: Vec<(usize, String, Error)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sector
impl RefUnwindSafe for Sector
impl Send for Sector
impl Sync for Sector
impl Unpin for Sector
impl UnwindSafe for Sector
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