pub enum Error {
NodeEmpty,
DomainEmpty,
ResourceEmpty,
NodeTooLong,
DomainTooLong,
ResourceTooLong,
NodePrep,
NamePrep,
ResourcePrep,
ResourceMissingInFullJid,
ResourceInBareJid,
}
Expand description
An error that signifies that a Jid
cannot be parsed from a string.
Variants§
NodeEmpty
Happens when the node is empty, that is the string starts with a @.
DomainEmpty
Happens when there is no domain, that is either the string is empty, starts with a /, or contains the @/ sequence.
ResourceEmpty
Happens when the resource is empty, that is the string ends with a /.
NodeTooLong
Happens when the localpart is longer than 1023 bytes.
DomainTooLong
Happens when the domain is longer than 1023 bytes.
ResourceTooLong
Happens when the resource is longer than 1023 bytes.
NodePrep
Happens when the localpart is invalid according to nodeprep.
NamePrep
Happens when the domain is invalid according to nameprep.
ResourcePrep
Happens when the resource is invalid according to resourceprep.
ResourceMissingInFullJid
Happens when there is no resource, that is string contains no /.
ResourceInBareJid
Happens when parsing a bare JID and there is a resource.
Trait Implementations§
Source§impl Error for Error
Available on crate feature std
only.
impl Error for Error
std
only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
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
CompactString
. Read more