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 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 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