pub struct RtpHdrext {
pub id: u16,
pub uri: String,
pub senders: Senders,
}
Expand description
Header extensions to be used in a RTP description.
Fields§
§id: u16
The ID of the extensions. The allowed values are only in the 1-256, 4096-4351 ranges, this isn’t enforced by xmpp-parsers yet!
uri: String
The URI that defines the extension.
senders: Senders
Which party is allowed to send the negotiated RTP Header Extensions.
Implementations§
Trait Implementations§
impl StructuralPartialEq for RtpHdrext
Auto Trait Implementations§
impl Freeze for RtpHdrext
impl RefUnwindSafe for RtpHdrext
impl Send for RtpHdrext
impl Sync for RtpHdrext
impl Unpin for RtpHdrext
impl UnwindSafe for RtpHdrext
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more