pub type FrontieredInputHandle<'a, T, D, P> = FrontieredInputHandleCore<'a, T, Vec<D>, P>;
Expand description
Handle to an operator’s input stream and frontier, specialized to vectors.
Aliased Type§
struct FrontieredInputHandle<'a, T, D, P> {
pub handle: &'a mut InputHandleCore<T, Vec<D>, P>,
pub frontier: &'a MutableAntichain<T>,
}
Fields§
§handle: &'a mut InputHandleCore<T, Vec<D>, P>
The underlying input handle.
frontier: &'a MutableAntichain<T>
The frontier as reported by timely progress tracking.