#[repr(C)]pub struct RtpParameters {
pub transaction_id: String,
pub mid: String,
pub codecs: Vec<RtpCodecParameters>,
pub header_extensions: Vec<RtpExtension>,
pub encodings: Vec<RtpEncodingParameters>,
pub rtcp: RtcpParameters,
pub has_degradation_preference: bool,
pub degradation_preference: DegradationPreference,
}Fields§
§transaction_id: String§mid: String§codecs: Vec<RtpCodecParameters>§header_extensions: Vec<RtpExtension>§encodings: Vec<RtpEncodingParameters>§rtcp: RtcpParameters§has_degradation_preference: bool§degradation_preference: DegradationPreferenceTrait Implementations§
Source§impl Debug for RtpParameters
impl Debug for RtpParameters
Source§impl ExternType for RtpParameters
impl ExternType for RtpParameters
Auto Trait Implementations§
impl Freeze for RtpParameters
impl RefUnwindSafe for RtpParameters
impl Send for RtpParameters
impl Sync for RtpParameters
impl Unpin for RtpParameters
impl UnwindSafe for RtpParameters
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