1 2 3 4 5 6
/// A message sent over the network. #[derive(Debug, Clone, PartialEq)] pub struct Message { start: u64, length: Option<u64>, }
1 2 3 4 5 6
/// A message sent over the network. #[derive(Debug, Clone, PartialEq)] pub struct Message { start: u64, length: Option<u64>, }