pub struct Station {
pub max_dockable_ship_volume: f32,
pub name: String,
pub office_rental_cost: f32,
pub owner: i64,
pub position: Position,
pub race_id: i32,
pub reprocessing_efficiency: f32,
pub reprocessing_stations_take: f32,
pub services: Vec<String>,
pub station_id: i64,
pub system_id: i32,
pub type_id: i32,
}Fields§
§max_dockable_ship_volume: f32§name: String§office_rental_cost: f32§owner: i64§position: Position§race_id: i32§reprocessing_efficiency: f32§reprocessing_stations_take: f32§services: Vec<String>§station_id: i64§system_id: i32§type_id: i32Trait Implementations§
Source§impl<'de> Deserialize<'de> for Station
impl<'de> Deserialize<'de> for Station
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 Station
impl RefUnwindSafe for Station
impl Send for Station
impl Sync for Station
impl Unpin for Station
impl UnwindSafe for Station
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