Struct rsonpath_lib::quotes::ResumeClassifierState
source · pub struct ResumeClassifierState<'a, I: QuoteClassifiedIterator<'a>> {
pub iter: I,
pub block: Option<ResumeClassifierBlockState<'a>>,
}
Expand description
State allowing resumption of a classifier from a particular place
in the input along with the stopped QuoteClassifiedIterator
.
Fields
iter: I
The stopped iterator.
block: Option<ResumeClassifierBlockState<'a>>
The block at which classification was stopped.
Implementations
sourceimpl<'a, I: QuoteClassifiedIterator<'a>> ResumeClassifierState<'a, I>
impl<'a, I: QuoteClassifiedIterator<'a>> ResumeClassifierState<'a, I>
Auto Trait Implementations
impl<'a, I> RefUnwindSafe for ResumeClassifierState<'a, I>where
I: RefUnwindSafe,
impl<'a, I> Send for ResumeClassifierState<'a, I>where
I: Send,
impl<'a, I> Sync for ResumeClassifierState<'a, I>where
I: Sync,
impl<'a, I> Unpin for ResumeClassifierState<'a, I>where
I: Unpin,
impl<'a, I> UnwindSafe for ResumeClassifierState<'a, I>where
I: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more