pub enum Error {
NodeEmpty,
ResourceEmpty,
NodeTooLong,
ResourceTooLong,
NodePrep,
NamePrep,
ResourcePrep,
ResourceMissingInFullJid,
ResourceInBareJid,
TooManyAts,
Idna,
}
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 @.
ResourceEmpty
Happens when the resource is empty, that is the string ends with a /.
NodeTooLong
Happens when the localpart 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.
TooManyAts
Happens when parsing a JID which has two @ before the resource.
Idna
Happens when the domain is invalid according to idna.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Mutably borrows from an owned value. Read more
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