pub trait StopWordsIteratorPar: ParallelIterator {
// Provided method
fn filter_stop_words(
self,
sw: &StopWords,
) -> StopWordsIteratorParallel<'_, Self>
where Self: Sized { ... }
}Expand description
Trait implementing a ParallelIterator function to filter out StopWords out of a ParallelIterator
Provided Methods§
fn filter_stop_words(
self,
sw: &StopWords,
) -> StopWordsIteratorParallel<'_, Self>where
Self: Sized,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.