[][src]Struct edsm_dumps_model::model::system_populated::StationInPopulated

pub struct StationInPopulated {
    pub id: u64,
    pub allegiance: Allegiance,
    pub body: Option<StationBody>,
    pub controlling_faction: Option<ControllingFaction>,
    pub distance_to_arrival: Option<f32>,
    pub economy: Economy,
    pub government: Option<Government>,
    pub have_market: bool,
    pub have_outfitting: bool,
    pub have_shipyard: bool,
    pub market_id: Option<u64>,
    pub name: String,
    pub other_services: Vec<OtherService>,
    pub second_economy: Option<Economy>,
    pub st_type: StationType,
    pub update_time: UpdateTime,
}

Fields

id: u64allegiance: Allegiancebody: Option<StationBody>controlling_faction: Option<ControllingFaction>distance_to_arrival: Option<f32>economy: Economygovernment: Option<Government>have_market: boolhave_outfitting: boolhave_shipyard: boolmarket_id: Option<u64>name: Stringother_services: Vec<OtherService>second_economy: Option<Economy>st_type: StationTypeupdate_time: UpdateTime

Trait Implementations

impl Clone for StationInPopulated[src]

impl Debug for StationInPopulated[src]

impl<'de> Deserialize<'de> for StationInPopulated[src]

impl PartialEq<StationInPopulated> for StationInPopulated[src]

impl Serialize for StationInPopulated[src]

impl StructuralPartialEq for StationInPopulated[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.