Enum xmpp_parsers::stanza_error::ErrorType
source · pub enum ErrorType {
Auth,
Cancel,
Continue,
Modify,
Wait,
}
Expand description
The type of the error.
Variants§
Auth
Retry after providing credentials.
Cancel
Do not retry (the error cannot be remedied).
Continue
Proceed (the condition was only a warning).
Modify
Retry after changing the data sent.
Wait
Retry after waiting (the error is temporary).
Trait Implementations§
source§impl FromXmlText for ErrorType
impl FromXmlText for ErrorType
source§impl IntoAttributeValue for ErrorType
impl IntoAttributeValue for ErrorType
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl IntoXmlText for ErrorType
impl IntoXmlText for ErrorType
source§fn into_xml_text(self) -> String
fn into_xml_text(self) -> String
Consume the value and return it as XML string.
source§impl PartialEq for ErrorType
impl PartialEq for ErrorType
impl StructuralPartialEq for ErrorType
Auto Trait Implementations§
impl Freeze for ErrorType
impl RefUnwindSafe for ErrorType
impl Send for ErrorType
impl Sync for ErrorType
impl Unpin for ErrorType
impl UnwindSafe for ErrorType
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> FromOptionalXmlText for Twhere
T: FromXmlText,
impl<T> FromOptionalXmlText for Twhere
T: FromXmlText,
source§impl<T> IntoOptionalXmlText for Twhere
T: IntoXmlText,
impl<T> IntoOptionalXmlText for Twhere
T: IntoXmlText,
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