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 FromXml for Description
impl FromXml for Description
§type Builder = FromEventsViaElement<Description>
type Builder = FromEventsViaElement<Description>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for Description
impl IntoXml for Description
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.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
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<Description, FromElementError>
fn try_from(elem: Element) -> Result<Description, FromElementError>
Performs the conversion.
impl StructuralPartialEq for Description
Auto Trait Implementations§
impl Freeze for Description
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)