Struct xmpp_parsers::jingle_rtp::Description
source · pub struct Description {
pub media: String,
pub ssrc: Option<String>,
pub payload_types: Vec<PayloadType>,
pub rtcp_mux: Option<RtcpMux>,
pub ssrc_groups: Vec<Group>,
pub ssrcs: Vec<Source>,
pub hdrexts: Vec<RtpHdrext>,
}
Expand description
Wrapper element describing an RTP session.
Fields§
§media: String
Namespace of the encryption scheme used.
ssrc: Option<String>
User-friendly name for the encryption scheme, should be None
for OTR,
legacy OpenPGP and OX.
payload_types: Vec<PayloadType>
List of encodings that can be used for this RTP stream.
rtcp_mux: Option<RtcpMux>
Specifies the ability to multiplex RTP Data and Control Packets on a single port as described in RFC 5761.
ssrc_groups: Vec<Group>
List of ssrc-group.
ssrcs: Vec<Source>
List of ssrc.
hdrexts: Vec<RtpHdrext>
List of header extensions.
Implementations§
source§impl Description
impl Description
sourcepub fn new(media: String) -> Description
pub fn new(media: String) -> Description
Create a new RTP description.
Trait Implementations§
source§impl Clone for Description
impl Clone for Description
source§fn clone(&self) -> Description
fn clone(&self) -> Description
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 Description
impl Debug for Description
source§impl From<Description> for Description
impl From<Description> for Description
source§fn from(desc: RtpDescription) -> Description
fn from(desc: RtpDescription) -> Description
Converts to this type from the input type.
source§impl From<Description> for Element
impl From<Description> for Element
source§fn from(elem: Description) -> Element
fn from(elem: Description) -> Element
Converts to this type from the input type.
source§impl PartialEq for Description
impl PartialEq for Description
source§fn eq(&self, other: &Description) -> bool
fn eq(&self, other: &Description) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Description
impl TryFrom<Element> for Description
impl StructuralPartialEq for Description
Auto Trait Implementations§
impl RefUnwindSafe for Description
impl Send for Description
impl Sync for Description
impl Unpin for Description
impl UnwindSafe for Description
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