1use std::time::Instant;
2use crate::round_trip_statistics::RoundTripStatistics;
3
4#[derive(Debug, Clone)]
5pub struct Event {
6 pub timestamp: Instant,
7 pub host: String,
8 pub success: bool,
9 pub round_trip_statistics: Option<RoundTripStatistics>,
10}