Struct xmpp_parsers::stanza_error::StanzaError
source · pub struct StanzaError {
pub type_: ErrorType,
pub by: Option<Jid>,
pub defined_condition: DefinedCondition,
pub texts: BTreeMap<String, String>,
pub other: Option<Element>,
pub alternate_address: Option<String>,
}
Expand description
The representation of a stanza error.
Fields§
§type_: ErrorType
The type of this error.
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.
alternate_address: Option<String>
May include an alternate address if defined_condition
is Gone
or Redirect
. It is
a Uniform Resource Identifier [URI] or Internationalized Resource Identifier [IRI] at
which the entity can be contacted, typically an XMPP IRI as specified in [XMPP‑URI]
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(err: StanzaError) -> Element
fn from(err: StanzaError) -> Element
Converts to this type from the input type.
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
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<StanzaError, FromElementError>
fn try_from(elem: Element) -> Result<StanzaError, FromElementError>
Performs the conversion.
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