1use serde::Serialize; 2 3/// Helper struct which contains the very minimum displayable information for a system. 4#[derive(Debug, Clone, Default, Serialize)] 5pub struct PartialSystemInfo { 6 pub system_address: u64, 7 pub star_name: String, 8}