pub enum ErrKind {
Show 38 variants
BadlyNestedEndTag,
EndTagWithoutCorrespondingStartTag,
UnclosedStartTag,
DoctypeInForeignElement,
VoidElementAsEndTag,
NonVoidElementStartTagWithTrailingSolidus,
InvalidUtf8,
InvalidFirstCharacterOfTagName,
InvalidCharacterSequenceAfterDoctypeName,
UnexpectedNullCharacter,
UnexpectedEqualsBeforeAttributeName,
UnexpectedCharacterInAttributeName,
UnexpectedQuestionMarkInsteadOfTagName,
UnexpectedCharacterInUnquotedAttributeValue,
UnexpectedSolidusInTag,
MissingSemiColonAfterCharacterReference,
MissingEndTagName,
MissingAttributeValue,
MissingWhitespaceBeforeDoctypeName,
MissingDoctypeName,
MissingWhitespaceBetweenAttributes,
UnknownCharacterReference,
EofBeforeTagName,
EofInTag,
EofInDoctype,
EofInComment,
IncorrectlyOpenedComment,
EndTagWithTrailingSolidus,
EndTagWithAttributes,
DuplicateAttribute,
NullCharacterReference,
CharacterReferenceOutsideUnicodeRange,
SurrogateCharacterReference,
NonCharacterCharacterReference,
ControlCharacterReference,
CannotAppendToNode,
CannotInsertAtRoot,
CannotReplaceRoot,
}
Variants§
BadlyNestedEndTag
EndTagWithoutCorrespondingStartTag
UnclosedStartTag
DoctypeInForeignElement
VoidElementAsEndTag
NonVoidElementStartTagWithTrailingSolidus
InvalidUtf8
InvalidFirstCharacterOfTagName
InvalidCharacterSequenceAfterDoctypeName
UnexpectedNullCharacter
UnexpectedEqualsBeforeAttributeName
UnexpectedCharacterInAttributeName
UnexpectedQuestionMarkInsteadOfTagName
UnexpectedCharacterInUnquotedAttributeValue
UnexpectedSolidusInTag
MissingSemiColonAfterCharacterReference
MissingEndTagName
MissingAttributeValue
MissingWhitespaceBeforeDoctypeName
MissingDoctypeName
MissingWhitespaceBetweenAttributes
UnknownCharacterReference
EofBeforeTagName
EofInTag
EofInDoctype
EofInComment
IncorrectlyOpenedComment
EndTagWithTrailingSolidus
EndTagWithAttributes
DuplicateAttribute
NullCharacterReference
CharacterReferenceOutsideUnicodeRange
SurrogateCharacterReference
NonCharacterCharacterReference
ControlCharacterReference
CannotAppendToNode
CannotInsertAtRoot
CannotReplaceRoot
Trait Implementations§
impl Eq for ErrKind
impl StructuralPartialEq for ErrKind
Auto Trait Implementations§
impl Freeze for ErrKind
impl RefUnwindSafe for ErrKind
impl Send for ErrKind
impl Sync for ErrKind
impl Unpin for ErrKind
impl UnwindSafe for ErrKind
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