pub struct Rtpmap {
pub payload_type: u32,
pub encoding_name: String,
pub clock_rate: i32,
pub encoding_params: Option<i32>,
}
Expand description
The rtpmap
attribute as it appears in the attribute line(s) (a=
).
Fields§
§payload_type: u32
§encoding_name: String
§clock_rate: i32
§encoding_params: Option<i32>
Trait Implementations§
Source§impl Ord for Rtpmap
impl Ord for Rtpmap
Source§impl PartialOrd for Rtpmap
impl PartialOrd for Rtpmap
impl Eq for Rtpmap
impl StructuralPartialEq for Rtpmap
Auto Trait Implementations§
impl Freeze for Rtpmap
impl RefUnwindSafe for Rtpmap
impl Send for Rtpmap
impl Sync for Rtpmap
impl Unpin for Rtpmap
impl UnwindSafe for Rtpmap
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