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§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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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