Struct xmpp_parsers::jingle::ReasonElement
source · pub struct ReasonElement {
pub reason: Reason,
pub texts: BTreeMap<String, String>,
}
Expand description
Informs the recipient of something.
Fields§
§reason: Reason
The list of possible reasons to be included in a Jingle iq.
texts: BTreeMap<String, String>
A human-readable description of this reason.
Trait Implementations§
source§impl Clone for ReasonElement
impl Clone for ReasonElement
source§fn clone(&self) -> ReasonElement
fn clone(&self) -> ReasonElement
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 ReasonElement
impl Debug for ReasonElement
source§impl Display for ReasonElement
impl Display for ReasonElement
source§impl From<ReasonElement> for Element
impl From<ReasonElement> for Element
source§fn from(reason: ReasonElement) -> Element
fn from(reason: ReasonElement) -> Element
Converts to this type from the input type.
source§impl PartialEq for ReasonElement
impl PartialEq for ReasonElement
source§fn eq(&self, other: &ReasonElement) -> bool
fn eq(&self, other: &ReasonElement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for ReasonElement
impl TryFrom<Element> for ReasonElement
impl StructuralPartialEq for ReasonElement
Auto Trait Implementations§
impl Freeze for ReasonElement
impl RefUnwindSafe for ReasonElement
impl Send for ReasonElement
impl Sync for ReasonElement
impl Unpin for ReasonElement
impl UnwindSafe for ReasonElement
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> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more