#[repr(u32)]pub enum xmpp_error_type_t {
Show 24 variants
XMPP_SE_BAD_FORMAT = 0,
XMPP_SE_BAD_NS_PREFIX = 1,
XMPP_SE_CONFLICT = 2,
XMPP_SE_CONN_TIMEOUT = 3,
XMPP_SE_HOST_GONE = 4,
XMPP_SE_HOST_UNKNOWN = 5,
XMPP_SE_IMPROPER_ADDR = 6,
XMPP_SE_INTERNAL_SERVER_ERROR = 7,
XMPP_SE_INVALID_FROM = 8,
XMPP_SE_INVALID_ID = 9,
XMPP_SE_INVALID_NS = 10,
XMPP_SE_INVALID_XML = 11,
XMPP_SE_NOT_AUTHORIZED = 12,
XMPP_SE_POLICY_VIOLATION = 13,
XMPP_SE_REMOTE_CONN_FAILED = 14,
XMPP_SE_RESOURCE_CONSTRAINT = 15,
XMPP_SE_RESTRICTED_XML = 16,
XMPP_SE_SEE_OTHER_HOST = 17,
XMPP_SE_SYSTEM_SHUTDOWN = 18,
XMPP_SE_UNDEFINED_CONDITION = 19,
XMPP_SE_UNSUPPORTED_ENCODING = 20,
XMPP_SE_UNSUPPORTED_STANZA_TYPE = 21,
XMPP_SE_UNSUPPORTED_VERSION = 22,
XMPP_SE_XML_NOT_WELL_FORMED = 23,
}Variants§
XMPP_SE_BAD_FORMAT = 0
XMPP_SE_BAD_NS_PREFIX = 1
XMPP_SE_CONFLICT = 2
XMPP_SE_CONN_TIMEOUT = 3
XMPP_SE_HOST_GONE = 4
XMPP_SE_HOST_UNKNOWN = 5
XMPP_SE_IMPROPER_ADDR = 6
XMPP_SE_INTERNAL_SERVER_ERROR = 7
XMPP_SE_INVALID_FROM = 8
XMPP_SE_INVALID_ID = 9
XMPP_SE_INVALID_NS = 10
XMPP_SE_INVALID_XML = 11
XMPP_SE_NOT_AUTHORIZED = 12
XMPP_SE_POLICY_VIOLATION = 13
XMPP_SE_REMOTE_CONN_FAILED = 14
XMPP_SE_RESOURCE_CONSTRAINT = 15
XMPP_SE_RESTRICTED_XML = 16
XMPP_SE_SEE_OTHER_HOST = 17
XMPP_SE_SYSTEM_SHUTDOWN = 18
XMPP_SE_UNDEFINED_CONDITION = 19
XMPP_SE_UNSUPPORTED_ENCODING = 20
XMPP_SE_UNSUPPORTED_STANZA_TYPE = 21
XMPP_SE_UNSUPPORTED_VERSION = 22
XMPP_SE_XML_NOT_WELL_FORMED = 23
Trait Implementations§
Source§impl Clone for xmpp_error_type_t
impl Clone for xmpp_error_type_t
Source§fn clone(&self) -> xmpp_error_type_t
fn clone(&self) -> xmpp_error_type_t
Returns a duplicate 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 xmpp_error_type_t
impl Debug for xmpp_error_type_t
Source§impl Hash for xmpp_error_type_t
impl Hash for xmpp_error_type_t
Source§impl PartialEq for xmpp_error_type_t
impl PartialEq for xmpp_error_type_t
impl Copy for xmpp_error_type_t
impl Eq for xmpp_error_type_t
impl StructuralPartialEq for xmpp_error_type_t
Auto Trait Implementations§
impl Freeze for xmpp_error_type_t
impl RefUnwindSafe for xmpp_error_type_t
impl Send for xmpp_error_type_t
impl Sync for xmpp_error_type_t
impl Unpin for xmpp_error_type_t
impl UnwindSafe for xmpp_error_type_t
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