pub struct ResumeClassifierState<'a, I: QuoteClassifiedIterator<'a>> {
pub iter: I,
pub block: Option<ResumeClassifierBlockState<'a>>,
pub are_commas_on: bool,
pub are_colons_on: bool,
}Expand description
State allowing resumption of a classifier from a particular place
in the input along with the stopped QuoteClassifiedIterator.
Fields§
§iter: IThe stopped iterator.
block: Option<ResumeClassifierBlockState<'a>>The block at which classification was stopped.
are_commas_on: boolWas comma classification turned on when the classification was stopped.
are_colons_on: boolWas colon classification turned on when the classification was stopped.