Struct tantivy_fst::raw::Difference
source · [−]pub struct Difference<'f> { /* private fields */ }
Expand description
A stream of set difference over multiple fst streams in lexicographic order.
The difference operation is taken with respect to the first stream and the rest of the streams. i.e., All elements in the first stream that do not appear in any other streams.
The 'f
lifetime parameter refers to the lifetime of the underlying fst.
Trait Implementations
sourceimpl<'a, 'f> Streamer<'a> for Difference<'f>
impl<'a, 'f> Streamer<'a> for Difference<'f>
Auto Trait Implementations
impl<'f> !RefUnwindSafe for Difference<'f>
impl<'f> !Send for Difference<'f>
impl<'f> !Sync for Difference<'f>
impl<'f> Unpin for Difference<'f>
impl<'f> !UnwindSafe for Difference<'f>
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more