Struct xmpp_parsers::stanza_error::StanzaError
source · pub struct StanzaError {
pub namespace: StanzaNamespace,
pub type_: ErrorType,
pub code: Discard,
pub by: Option<Jid>,
pub defined_condition: DefinedCondition,
pub texts: BTreeMap<String, String>,
pub other: Option<Element>,
}
Expand description
The representation of a stanza error.
Fields§
§namespace: StanzaNamespace
Namespace of this element
type_: ErrorType
The type of this error.
code: Discard
Legacy error code attribute
by: Option<Jid>
The JID of the entity who set this error.
defined_condition: DefinedCondition
One of the defined conditions for this error to happen.
texts: BTreeMap<String, String>
Human-readable description of this error.
other: Option<Element>
A protocol-specific extension for this error.
Implementations§
source§impl StanzaError
impl StanzaError
sourcepub fn new<L, T>(
type_: ErrorType,
defined_condition: DefinedCondition,
lang: L,
text: T,
) -> StanzaError
pub fn new<L, T>( type_: ErrorType, defined_condition: DefinedCondition, lang: L, text: T, ) -> StanzaError
Create a new <error/>
with the according content.
Trait Implementations§
source§impl Clone for StanzaError
impl Clone for StanzaError
source§fn clone(&self) -> StanzaError
fn clone(&self) -> StanzaError
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 StanzaError
impl Debug for StanzaError
source§impl From<StanzaError> for Element
impl From<StanzaError> for Element
source§fn from(other: StanzaError) -> Self
fn from(other: StanzaError) -> Self
Converts to this type from the input type.
source§impl FromXml for StanzaError
impl FromXml for StanzaError
source§impl IntoXml for StanzaError
impl IntoXml for StanzaError
source§impl PartialEq for StanzaError
impl PartialEq for StanzaError
source§fn eq(&self, other: &StanzaError) -> bool
fn eq(&self, other: &StanzaError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for StanzaError
impl TryFrom<Element> for StanzaError
impl MessagePayload for StanzaError
impl PresencePayload for StanzaError
impl StructuralPartialEq for StanzaError
Auto Trait Implementations§
impl Freeze for StanzaError
impl RefUnwindSafe for StanzaError
impl Send for StanzaError
impl Sync for StanzaError
impl Unpin for StanzaError
impl UnwindSafe for StanzaError
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