#[non_exhaustive]pub struct RtpCapabilitiesFinalized {
pub codecs: Vec<RtpCodecCapabilityFinalized>,
pub header_extensions: Vec<RtpHeaderExtension>,
}
Expand description
The RTP capabilities define what mediasoup or an endpoint can receive at media level.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.codecs: Vec<RtpCodecCapabilityFinalized>
Supported media and RTX codecs.
header_extensions: Vec<RtpHeaderExtension>
Supported RTP header extensions.
Trait Implementations§
Source§impl Clone for RtpCapabilitiesFinalized
impl Clone for RtpCapabilitiesFinalized
Source§fn clone(&self) -> RtpCapabilitiesFinalized
fn clone(&self) -> RtpCapabilitiesFinalized
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 RtpCapabilitiesFinalized
impl Debug for RtpCapabilitiesFinalized
Source§impl Default for RtpCapabilitiesFinalized
impl Default for RtpCapabilitiesFinalized
Source§fn default() -> RtpCapabilitiesFinalized
fn default() -> RtpCapabilitiesFinalized
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RtpCapabilitiesFinalized
impl<'de> Deserialize<'de> for RtpCapabilitiesFinalized
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 Hash for RtpCapabilitiesFinalized
impl Hash for RtpCapabilitiesFinalized
Source§impl Ord for RtpCapabilitiesFinalized
impl Ord for RtpCapabilitiesFinalized
Source§fn cmp(&self, other: &RtpCapabilitiesFinalized) -> Ordering
fn cmp(&self, other: &RtpCapabilitiesFinalized) -> 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 RtpCapabilitiesFinalized
impl PartialEq for RtpCapabilitiesFinalized
Source§impl PartialOrd for RtpCapabilitiesFinalized
impl PartialOrd for RtpCapabilitiesFinalized
Source§impl Serialize for RtpCapabilitiesFinalized
impl Serialize for RtpCapabilitiesFinalized
impl Eq for RtpCapabilitiesFinalized
impl StructuralPartialEq for RtpCapabilitiesFinalized
Auto Trait Implementations§
impl Freeze for RtpCapabilitiesFinalized
impl RefUnwindSafe for RtpCapabilitiesFinalized
impl Send for RtpCapabilitiesFinalized
impl Sync for RtpCapabilitiesFinalized
impl Unpin for RtpCapabilitiesFinalized
impl UnwindSafe for RtpCapabilitiesFinalized
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