pub trait AeronBroadcastReceiverHandlerCallback {
// Required method
fn handle_aeron_broadcast_receiver_handler(
&mut self,
type_id: i32,
buffer: &'static mut [u8],
);
}
Expand description
(note you must copy any arguments that you use afterwards even those with static lifetimes)