pub enum ParseAction {
None,
SkipBody,
}
Expand description
ParseAction
defines the potential actions that could be returned by any callback function.
The parser uses it to determine consequent behavior.
Variants§
Trait Implementations§
Source§impl Clone for ParseAction
impl Clone for ParseAction
Source§fn clone(&self) -> ParseAction
fn clone(&self) -> ParseAction
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ParseAction
impl RefUnwindSafe for ParseAction
impl Send for ParseAction
impl Sync for ParseAction
impl Unpin for ParseAction
impl UnwindSafe for ParseAction
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