pub trait AeronLossReporterReadEntryFuncCallback {
// Required method
fn handle_aeron_loss_reporter_read_entry_func(
&mut self,
observation_count: i64,
total_bytes_lost: i64,
first_observation_timestamp: i64,
last_observation_timestamp: i64,
session_id: i32,
stream_id: i32,
channel: &str,
source: &str,
);
}