Enum xmpp_parsers::jingle::Description
source · pub enum Description {
Rtp(Description),
Unknown(Element),
}
Expand description
Enum wrapping all of the various supported descriptions of a Content.
Variants§
Rtp(Description)
Jingle RTP Sessions (XEP-0167) description.
Unknown(Element)
To be used for any description that isn’t known at compile-time.
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(desc: Description) -> Element
fn from(desc: 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 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