ed-journals 0.13.0

Provides models for representing and parsing elite dangerous journal files
Documentation
1
2
3
4
5
6
7
8
use serde::Serialize;

/// Helper struct which contains the very minimum displayable information for a system.
#[derive(Debug, Clone, Default, Serialize)]
pub struct PartialSystemInfo {
    pub system_address: u64,
    pub star_name: String,
}