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
use crate::Double;

#[derive(Debug, Clone, PartialEq)]
pub struct WalletBalance {
    pub number: Double,
}

impl From<f64> for WalletBalance {
    fn from(value: f64) -> Self {
        Self {
            number: value as Double,
        }
    }
}