pub trait RTPBaseDepayloadImplExt: RTPBaseDepayloadImpl {
// Provided methods
fn parent_set_caps(&self, caps: &Caps) -> Result<(), LoggableError> { ... }
fn parent_handle_event(&self, event: Event) -> bool { ... }
fn parent_packet_lost(&self, event: &EventRef) -> bool { ... }
fn parent_process_rtp_packet(
&self,
rtp_buffer: &RTPBuffer<'_, Readable>,
) -> Option<Buffer> { ... }
}
Provided Methods§
fn parent_set_caps(&self, caps: &Caps) -> Result<(), LoggableError>
fn parent_handle_event(&self, event: Event) -> bool
fn parent_packet_lost(&self, event: &EventRef) -> bool
fn parent_process_rtp_packet( &self, rtp_buffer: &RTPBuffer<'_, Readable>, ) -> Option<Buffer>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.