pub trait RTPHeaderExtensionExt: IsA<RTPHeaderExtension> + Sealed + 'static {
    // Provided methods
    fn direction(&self) -> RTPHeaderExtensionDirection { ... }
    fn id(&self) -> u32 { ... }
    fn max_size(&self, input_meta: &Buffer) -> usize { ... }
    fn sdp_caps_field_name(&self) -> GString { ... }
    fn supported_flags(&self) -> RTPHeaderExtensionFlags { ... }
    fn uri(&self) -> Option<GString> { ... }
    fn set_attributes_from_caps(&self, caps: &Caps) -> bool { ... }
    fn set_direction(&self, direction: RTPHeaderExtensionDirection) { ... }
    fn set_id(&self, ext_id: u32) { ... }
    fn set_non_rtp_sink_caps(&self, caps: &Caps) -> bool { ... }
    fn set_wants_update_non_rtp_src_caps(&self, state: bool) { ... }
    fn wants_update_non_rtp_src_caps(&self) -> bool { ... }
}
Available on crate feature v1_20 only.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§