pub enum MalformedAttributeError {
MissingQuotationMark(u32),
MissingAttributeName(u32),
MissingAttributeValue(u32),
}
Expand description
Errors that will be returned when parsing malformed HTML attributes
Variants§
MissingQuotationMark(u32)
The quotation mark of the attribute is missing
MissingAttributeName(u32)
The attribute name is missing
MissingAttributeValue(u32)
The attribute value is missing
Trait Implementations§
Source§impl Debug for MalformedAttributeError
impl Debug for MalformedAttributeError
Source§impl PartialEq for MalformedAttributeError
impl PartialEq for MalformedAttributeError
impl Eq for MalformedAttributeError
impl StructuralPartialEq for MalformedAttributeError
Auto Trait Implementations§
impl Freeze for MalformedAttributeError
impl RefUnwindSafe for MalformedAttributeError
impl Send for MalformedAttributeError
impl Sync for MalformedAttributeError
impl Unpin for MalformedAttributeError
impl UnwindSafe for MalformedAttributeError
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