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, }