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
16
17
18
use serde::Deserialize;

use crate::Int32;

#[derive(Deserialize, Debug)]
pub struct Stargate {
    pub destination: StargateDestination,
    pub name: String,
    pub stargate_id: Int32,
    pub system_id: Int32,
    pub type_id: Int32,
}

#[derive(Deserialize, Debug)]
pub struct StargateDestination {
    pub stargate_id: Int32,
    pub system_id: Int32,
}