pub struct Airport {
pub identifier: String,
pub runways: HashMap<RunwayIdentifier, Vec<Procedure>>,
}Fields§
§identifier: String§runways: HashMap<RunwayIdentifier, Vec<Procedure>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Airport
impl RefUnwindSafe for Airport
impl Send for Airport
impl Sync for Airport
impl Unpin for Airport
impl UnwindSafe for Airport
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