#[derive(Debug, Default, Clone, Copy)]
pub struct NetworkStats {
pub send_queue_len: usize,
pub ping: u128,
pub kbps_sent: usize,
pub local_frames_behind: i32,
pub remote_frames_behind: i32,
}
impl NetworkStats {
pub fn new() -> Self {
Self::default()
}
}