#[repr(C)]pub struct RtpCodecParameters {Show 14 fields
pub mime_type: String,
pub name: String,
pub kind: MediaType,
pub payload_type: i32,
pub has_clock_rate: bool,
pub clock_rate: i32,
pub has_num_channels: bool,
pub num_channels: i32,
pub has_max_ptime: bool,
pub max_ptime: i32,
pub has_ptime: bool,
pub ptime: i32,
pub rtcp_feedback: Vec<RtcpFeedback>,
pub parameters: Vec<StringKeyValue>,
}Fields§
§mime_type: String§name: String§kind: MediaType§payload_type: i32§has_clock_rate: bool§clock_rate: i32§has_num_channels: bool§num_channels: i32§has_max_ptime: bool§max_ptime: i32§has_ptime: bool§ptime: i32§rtcp_feedback: Vec<RtcpFeedback>§parameters: Vec<StringKeyValue>Trait Implementations§
Source§impl Debug for RtpCodecParameters
impl Debug for RtpCodecParameters
Source§impl ExternType for RtpCodecParameters
impl ExternType for RtpCodecParameters
Auto Trait Implementations§
impl Freeze for RtpCodecParameters
impl RefUnwindSafe for RtpCodecParameters
impl Send for RtpCodecParameters
impl Sync for RtpCodecParameters
impl Unpin for RtpCodecParameters
impl UnwindSafe for RtpCodecParameters
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