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