edjr 0.1.3

Elite Dangerous Journal Reader
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use {crate::elite::ship::Ship, serde::Deserialize};

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ClearImpoundEvent {
    #[serde(alias = "MarketID")]
    pub market_id: Option<u64>,
    #[serde(flatten)]
    pub ship: Ship,
    #[serde(alias = "ShipMarketID")]
    pub ship_market_id: Option<u64>,
    pub system: String,
}