pub enum RtpRtcpMuxPacketKind {
Rtp,
Rtcp,
}Expand description
RTP or RTCP candidate selected by the RFC 5761 second-octet split.
The result identifies only the mux candidate kind. It does not validate the complete packet body.
Reference: https://www.rfc-editor.org/rfc/rfc5761.html#section-4
Variants§
Trait Implementations§
Source§impl Clone for RtpRtcpMuxPacketKind
impl Clone for RtpRtcpMuxPacketKind
Source§fn clone(&self) -> RtpRtcpMuxPacketKind
fn clone(&self) -> RtpRtcpMuxPacketKind
Returns a duplicate 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 RtpRtcpMuxPacketKind
impl Debug for RtpRtcpMuxPacketKind
Source§impl PartialEq for RtpRtcpMuxPacketKind
impl PartialEq for RtpRtcpMuxPacketKind
impl Copy for RtpRtcpMuxPacketKind
impl Eq for RtpRtcpMuxPacketKind
impl StructuralPartialEq for RtpRtcpMuxPacketKind
Auto Trait Implementations§
impl Freeze for RtpRtcpMuxPacketKind
impl RefUnwindSafe for RtpRtcpMuxPacketKind
impl Send for RtpRtcpMuxPacketKind
impl Sync for RtpRtcpMuxPacketKind
impl Unpin for RtpRtcpMuxPacketKind
impl UnsafeUnpin for RtpRtcpMuxPacketKind
impl UnwindSafe for RtpRtcpMuxPacketKind
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