pub enum UnknownTagKind {
Open,
Close,
Unbalanced,
UnexpectedClose,
}Expand description
The kind of unknown tag encountered.
Variants§
Open
An opening tag: [foo]
Close
A closing tag: [/foo]
Unbalanced
An unbalanced opening tag: [foo]... (no matching close)
UnexpectedClose
An unexpected closing tag: ...[/foo] (no matching open)
Trait Implementations§
Source§impl Clone for UnknownTagKind
impl Clone for UnknownTagKind
Source§fn clone(&self) -> UnknownTagKind
fn clone(&self) -> UnknownTagKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnknownTagKind
impl Debug for UnknownTagKind
Source§impl PartialEq for UnknownTagKind
impl PartialEq for UnknownTagKind
impl Copy for UnknownTagKind
impl Eq for UnknownTagKind
impl StructuralPartialEq for UnknownTagKind
Auto Trait Implementations§
impl Freeze for UnknownTagKind
impl RefUnwindSafe for UnknownTagKind
impl Send for UnknownTagKind
impl Sync for UnknownTagKind
impl Unpin for UnknownTagKind
impl UnwindSafe for UnknownTagKind
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