pub enum ElementEnd<'input> {
Open,
Close(&'input str, &'input str),
Empty,
}
Expand description
ElementEnd
token.
Variants§
Trait Implementations§
Source§impl<'input> Clone for ElementEnd<'input>
impl<'input> Clone for ElementEnd<'input>
Source§fn clone(&self) -> ElementEnd<'input>
fn clone(&self) -> ElementEnd<'input>
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 moreimpl<'input> Copy for ElementEnd<'input>
Auto Trait Implementations§
impl<'input> Freeze for ElementEnd<'input>
impl<'input> RefUnwindSafe for ElementEnd<'input>
impl<'input> Send for ElementEnd<'input>
impl<'input> Sync for ElementEnd<'input>
impl<'input> Unpin for ElementEnd<'input>
impl<'input> UnwindSafe for ElementEnd<'input>
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