pub enum InnerParseResult<Input> {
Success,
Next(Input),
}
Expand description
Result of InnerState
parse methods to signal whether they successfully parsed the input or
another InnerState
needs to take a shot.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<Input> Freeze for InnerParseResult<Input>where
Input: Freeze,
impl<Input> RefUnwindSafe for InnerParseResult<Input>where
Input: RefUnwindSafe,
impl<Input> Send for InnerParseResult<Input>where
Input: Send,
impl<Input> Sync for InnerParseResult<Input>where
Input: Sync,
impl<Input> Unpin for InnerParseResult<Input>where
Input: Unpin,
impl<Input> UnwindSafe for InnerParseResult<Input>where
Input: UnwindSafe,
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