Struct xmpp_parsers::jingle_rtp::PayloadType
source · pub struct PayloadType {
pub channels: Channels,
pub clockrate: Option<u32>,
pub id: u8,
pub maxptime: Option<u32>,
pub name: Option<String>,
pub ptime: Option<u32>,
pub parameters: Vec<Parameter>,
pub rtcp_fbs: Vec<RtcpFb>,
}
Expand description
An encoding that can be used for an RTP stream.
Fields§
§channels: Channels
The number of channels.
clockrate: Option<u32>
The sampling frequency in Hertz.
id: u8
The payload identifier.
maxptime: Option<u32>
Maximum packet time as specified in RFC 4566.
name: Option<String>
The appropriate subtype of the MIME type.
ptime: Option<u32>
Packet time as specified in RFC 4566.
parameters: Vec<Parameter>
List of parameters specifying this payload-type.
Their order MUST be ignored.
rtcp_fbs: Vec<RtcpFb>
List of rtcp-fb parameters from XEP-0293.
Implementations§
source§impl PayloadType
impl PayloadType
sourcepub fn new(id: u8, name: String, clockrate: u32, channels: u8) -> PayloadType
pub fn new(id: u8, name: String, clockrate: u32, channels: u8) -> PayloadType
Create a new RTP payload-type.
sourcepub fn without_clockrate(id: u8, name: String) -> PayloadType
pub fn without_clockrate(id: u8, name: String) -> PayloadType
Create a new RTP payload-type without a clockrate. Warning: this is invalid as per RFC 4566!
Trait Implementations§
source§impl Clone for PayloadType
impl Clone for PayloadType
source§fn clone(&self) -> PayloadType
fn clone(&self) -> PayloadType
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 PayloadType
impl Debug for PayloadType
source§impl From<PayloadType> for Element
impl From<PayloadType> for Element
source§fn from(elem: PayloadType) -> Element
fn from(elem: PayloadType) -> Element
Converts to this type from the input type.
source§impl PartialEq for PayloadType
impl PartialEq for PayloadType
source§fn eq(&self, other: &PayloadType) -> bool
fn eq(&self, other: &PayloadType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for PayloadType
impl TryFrom<Element> for PayloadType
impl StructuralPartialEq for PayloadType
Auto Trait Implementations§
impl Freeze for PayloadType
impl RefUnwindSafe for PayloadType
impl Send for PayloadType
impl Sync for PayloadType
impl Unpin for PayloadType
impl UnwindSafe for PayloadType
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