Enum tokio_xmpp::JidParseError
source · pub enum JidParseError {
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.