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§
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§
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