pub struct ResumedQuoteClassifier<Q, B, M, const N: usize> {
pub classifier: Q,
pub first_block: Option<QuoteClassifiedBlock<B, M, N>>,
}
Expand description
Result of resuming quote classification, the resulting iterator and optionally the first block (already quote classified).
Fields§
§classifier: Q
Resumed iterator.
first_block: Option<QuoteClassifiedBlock<B, M, N>>
Optional first quote classified block.
Auto Trait Implementations§
impl<Q, B, M, const N: usize> Freeze for ResumedQuoteClassifier<Q, B, M, N>
impl<Q, B, M, const N: usize> RefUnwindSafe for ResumedQuoteClassifier<Q, B, M, N>
impl<Q, B, M, const N: usize> Send for ResumedQuoteClassifier<Q, B, M, N>
impl<Q, B, M, const N: usize> Sync for ResumedQuoteClassifier<Q, B, M, N>
impl<Q, B, M, const N: usize> Unpin for ResumedQuoteClassifier<Q, B, M, N>
impl<Q, B, M, const N: usize> UnwindSafe for ResumedQuoteClassifier<Q, B, M, N>
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