pub enum LineAdvance {
Some(usize),
None,
}Expand description
An enum returned by the transition methods to tell the parser whether it needs to advance its line cursor after the method execution or not.
Variants§
Auto Trait Implementations§
impl Freeze for LineAdvance
impl RefUnwindSafe for LineAdvance
impl Send for LineAdvance
impl Sync for LineAdvance
impl Unpin for LineAdvance
impl UnwindSafe for LineAdvance
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