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 AsXml for ReasonElement
impl AsXml for ReasonElement
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.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 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 FromXml for ReasonElement
impl FromXml for ReasonElement
source§type Builder = FromEventsViaElement<ReasonElement>
type Builder = FromEventsViaElement<ReasonElement>
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 PartialEq for ReasonElement
impl PartialEq for ReasonElement
source§impl TryFrom<Element> for ReasonElement
impl TryFrom<Element> for ReasonElement
source§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<ReasonElement, FromElementError>
fn try_from(elem: Element) -> Result<ReasonElement, FromElementError>
Performs the conversion.
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> 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
)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