pub enum RtpHeaderExtensionUri {
Mid,
RtpStreamId,
RepairRtpStreamId,
FrameMarkingDraft07,
FrameMarking,
AudioLevel,
VideoOrientation,
TimeOffset,
TransportWideCcDraft01,
AbsSendTime,
AbsCaptureTime,
PlayoutDelay,
// some variants omitted
}
Expand description
URI for supported RTP header extension
Variants§
Mid
urn:ietf:params:rtp-hdrext:sdes:mid
RtpStreamId
urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id
RepairRtpStreamId
urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id
FrameMarkingDraft07
FrameMarking
urn:ietf:params:rtp-hdrext:framemarking
AudioLevel
urn:ietf:params:rtp-hdrext:ssrc-audio-level
VideoOrientation
urn:3gpp:video-orientation
TimeOffset
urn:ietf:params:rtp-hdrext:toffset
TransportWideCcDraft01
AbsSendTime
AbsCaptureTime
PlayoutDelay
Implementations§
Trait Implementations§
Source§impl Clone for RtpHeaderExtensionUri
impl Clone for RtpHeaderExtensionUri
Source§fn clone(&self) -> RtpHeaderExtensionUri
fn clone(&self) -> RtpHeaderExtensionUri
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RtpHeaderExtensionUri
impl Debug for RtpHeaderExtensionUri
Source§impl<'de> Deserialize<'de> for RtpHeaderExtensionUri
impl<'de> Deserialize<'de> for RtpHeaderExtensionUri
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for RtpHeaderExtensionUri
impl FromStr for RtpHeaderExtensionUri
Source§impl Hash for RtpHeaderExtensionUri
impl Hash for RtpHeaderExtensionUri
Source§impl Ord for RtpHeaderExtensionUri
impl Ord for RtpHeaderExtensionUri
Source§fn cmp(&self, other: &RtpHeaderExtensionUri) -> Ordering
fn cmp(&self, other: &RtpHeaderExtensionUri) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RtpHeaderExtensionUri
impl PartialEq for RtpHeaderExtensionUri
Source§impl PartialOrd for RtpHeaderExtensionUri
impl PartialOrd for RtpHeaderExtensionUri
Source§impl Serialize for RtpHeaderExtensionUri
impl Serialize for RtpHeaderExtensionUri
impl Copy for RtpHeaderExtensionUri
impl Eq for RtpHeaderExtensionUri
impl StructuralPartialEq for RtpHeaderExtensionUri
Auto Trait Implementations§
impl Freeze for RtpHeaderExtensionUri
impl RefUnwindSafe for RtpHeaderExtensionUri
impl Send for RtpHeaderExtensionUri
impl Sync for RtpHeaderExtensionUri
impl Unpin for RtpHeaderExtensionUri
impl UnwindSafe for RtpHeaderExtensionUri
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