eve-esi-api 0.0.4

This library provides an authentication to Eve-esi API and some endpoints to call.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::Deserialize;

use crate::{Float, Int32};

#[derive(Deserialize, Debug)]
pub struct Station {
    pub station_id: Int32,
    pub system_id: Int32,
    pub name: String,
    pub office_rental_cost: Float,
    pub reprocessing_efficiency: Float,
    pub reprocessing_stations_take: Float,
    pub services: Vec<String>,
    pub type_id: Int32,
}