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: &'static str,
source: &'static str,
);
}
Expand description
(note you must copy any arguments that you use afterwards even those with static lifetimes)