pub enum IgnoreEnd {
Yes,
No,
}
Expand description
Whether or not to skip the end tag of a tagged element.
Should be No
.
Variants§
Yes
Skip the end tag.
Will cause problems in most cases and should be used very carefully.
No
Don’t skip the end tag.
Trait Implementations§
impl Eq for IgnoreEnd
impl StructuralPartialEq for IgnoreEnd
Auto Trait Implementations§
impl Freeze for IgnoreEnd
impl RefUnwindSafe for IgnoreEnd
impl Send for IgnoreEnd
impl Sync for IgnoreEnd
impl Unpin for IgnoreEnd
impl UnwindSafe for IgnoreEnd
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