pub struct Intersection<'f> {
heap: StreamHeap<'f>,
outs: Vec<IndexedValue>,
cur_slot: Option<Slot>,
}
Expand description
A stream of set intersection over multiple fst streams in lexicographic order.
The 'f
lifetime parameter refers to the lifetime of the underlying fst.
Fields§
§heap: StreamHeap<'f>
§outs: Vec<IndexedValue>
§cur_slot: Option<Slot>
Trait Implementations§
Source§impl<'a, 'f> Streamer<'a> for Intersection<'f>
impl<'a, 'f> Streamer<'a> for Intersection<'f>
Auto Trait Implementations§
impl<'f> Freeze for Intersection<'f>
impl<'f> !RefUnwindSafe for Intersection<'f>
impl<'f> !Send for Intersection<'f>
impl<'f> !Sync for Intersection<'f>
impl<'f> Unpin for Intersection<'f>
impl<'f> !UnwindSafe for Intersection<'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