#[repr(u32)]pub enum ParseErrorKind {
Show 40 variants
UnexpectedCharacter = 65_537,
UnexpectedExpressionCharacter = 65538,
UnknownMetaTag = 65539,
MissingExpressionEnd = 65540,
IllegalEntity = 65541,
IncompleteTag = 65542,
MissingEndTag = 65543,
IllegalNamePrefix = 65544,
InvalidAttributePrefix = 65545,
InvalidAttributeName = 65546,
InvalidAttributeValue = 65547,
InvalidAttribute = 65548,
DuplicatedAttribute = 65549,
DuplicatedName = 65550,
AvoidUppercaseLetters = 65551,
UnexpectedWhitespace = 65552,
MissingAttributeValue = 65553,
DataBindingNotAllowed = 65554,
InvalidIdentifier = 65555,
InvalidScopeName = 65556,
ChildNodesNotAllowed = 65557,
IllegalEscapeSequence = 65558,
IncompleteConditionExpression = 65559,
UnmatchedBracket = 65560,
UnmatchedParenthesis = 65561,
MissingModuleName = 65562,
MissingSourcePath = 65563,
UnsupportedSyntax = 65564,
ShouldQuoted = 65565,
EmptyExpression = 65566,
InvalidEndTag = 65567,
DeprecatedAttribute = 65568,
IncompatibleWithWxAttribute = 65569,
UninitializedScope = 65570,
InvalidClassNames = 65571,
DuplicatedClassNames = 65572,
IncompatibleWithClassColonAttributes = 65573,
InvalidInlineStyleString = 65574,
DuplicatedStylePropertyNames = 65575,
IncompatibleWithStyleColonAttributes = 65576,
}
Variants§
UnexpectedCharacter = 65_537
UnexpectedExpressionCharacter = 65538
UnknownMetaTag = 65539
MissingExpressionEnd = 65540
IllegalEntity = 65541
IncompleteTag = 65542
MissingEndTag = 65543
IllegalNamePrefix = 65544
InvalidAttributePrefix = 65545
InvalidAttributeName = 65546
InvalidAttributeValue = 65547
InvalidAttribute = 65548
DuplicatedAttribute = 65549
DuplicatedName = 65550
AvoidUppercaseLetters = 65551
UnexpectedWhitespace = 65552
MissingAttributeValue = 65553
DataBindingNotAllowed = 65554
InvalidIdentifier = 65555
InvalidScopeName = 65556
ChildNodesNotAllowed = 65557
IllegalEscapeSequence = 65558
IncompleteConditionExpression = 65559
UnmatchedBracket = 65560
UnmatchedParenthesis = 65561
MissingModuleName = 65562
MissingSourcePath = 65563
UnsupportedSyntax = 65564
ShouldQuoted = 65565
EmptyExpression = 65566
InvalidEndTag = 65567
DeprecatedAttribute = 65568
IncompatibleWithWxAttribute = 65569
UninitializedScope = 65570
InvalidClassNames = 65571
DuplicatedClassNames = 65572
IncompatibleWithClassColonAttributes = 65573
InvalidInlineStyleString = 65574
DuplicatedStylePropertyNames = 65575
IncompatibleWithStyleColonAttributes = 65576
Implementations§
Source§impl ParseErrorKind
impl ParseErrorKind
pub fn level(&self) -> ParseErrorLevel
Trait Implementations§
Source§impl Clone for ParseErrorKind
impl Clone for ParseErrorKind
Source§fn clone(&self) -> ParseErrorKind
fn clone(&self) -> ParseErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParseErrorKind
impl Debug for ParseErrorKind
Source§impl Display for ParseErrorKind
impl Display for ParseErrorKind
Source§impl PartialEq for ParseErrorKind
impl PartialEq for ParseErrorKind
impl Eq for ParseErrorKind
impl StructuralPartialEq for ParseErrorKind
Auto Trait Implementations§
impl Freeze for ParseErrorKind
impl RefUnwindSafe for ParseErrorKind
impl Send for ParseErrorKind
impl Sync for ParseErrorKind
impl Unpin for ParseErrorKind
impl UnwindSafe for ParseErrorKind
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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