pub struct AirGate {
pub codes: Option<String>,
pub size: Option<Sourced<String>>,
pub airline: Option<Sourced<ID>>,
pub airport: Sourced<ID>,
pub flights: Vec<Sourced<ID>>,
pub common: NodeCommon,
}
Fields§
§codes: Option<String>
§size: Option<Sourced<String>>
§airline: Option<Sourced<ID>>
§airport: Sourced<ID>
§flights: Vec<Sourced<ID>>
§common: NodeCommon
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AirGate
impl<'de> Deserialize<'de> for AirGate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AirGate
impl RefUnwindSafe for AirGate
impl Send for AirGate
impl Sync for AirGate
impl Unpin for AirGate
impl UnwindSafe for AirGate
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