ed_journals/modules/logs/content/log_event_content/supercruise_exit_event.rs
use serde::{Deserialize, Serialize};
use crate::modules::galaxy::BodyType;
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(rename_all = "PascalCase")]
pub struct SupercruiseExitEvent {
pub star_system: String,
pub system_address: u64,
pub body: String,
#[serde(rename = "BodyID")]
pub body_id: u8,
pub body_type: BodyType,
#[serde(default)]
pub taxi: bool,
#[serde(default)]
pub multicrew: bool,
}