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 AsXml for Description
impl AsXml for Description
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.6.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(other: Description) -> Self
fn from(other: Description) -> Self
Converts to this type from the input type.
source§impl FromXml for Description
impl FromXml for Description
source§type Builder = DescriptionFromXmlBuilder
type Builder = DescriptionFromXmlBuilder
A builder type used to construct the element. Read more
source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl PartialEq for Description
impl PartialEq for Description
source§impl TryFrom<Element> for Description
impl TryFrom<Element> for Description
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)