pub trait RdpsndServerHandler: Send + Debug {
// Required methods
fn get_formats(&self) -> &[AudioFormat];
fn start(&mut self, client_format: &ClientAudioFormatPdu) -> Option<u16>;
fn stop(&mut self);
}pub trait RdpsndServerHandler: Send + Debug {
// Required methods
fn get_formats(&self) -> &[AudioFormat];
fn start(&mut self, client_format: &ClientAudioFormatPdu) -> Option<u16>;
fn stop(&mut self);
}