pub enum Column<C: Columnar> {
Typed(C::Container),
Bytes(Bytes),
Align(Vec<u64>),
}Expand description
A container based on a columnar store, encoded in aligned bytes.
The type can represent typed data, bytes from Timely, or an aligned allocation. The name
is singular to express that the preferred format is Column::Align. The Column::Typed
variant is used to construct the container, and it owns potentially multiple columns of data.
Variants§
Typed(C::Container)
The typed variant of the container.
Bytes(Bytes)
The binary variant of the container.
Align(Vec<u64>)
Relocated, aligned binary data, if Bytes doesn’t work for some reason.
Reasons could include misalignment, cloning of data, or wanting
to release the Bytes as a scarce resource.
Vec<u64> guarantees u64 alignment for the contained bytes.
Implementations§
Source§impl<D, T, R> Column<(D, T, R)>where
D: Columnar + Default,
for<'a> Ref<'a, D>: Copy + Ord,
T: Columnar + Default + Clone + PartialOrder,
for<'a> Ref<'a, T>: Copy + Ord,
R: Columnar + Default + Semigroup + for<'a> Semigroup<Ref<'a, R>>,
for<'a> <(D, T, R) as Columnar>::Container: Push<&'a (D, T, R)>,
for<'a, 'a> <D as Columnar>::Container: Push<Ref<'a, D>> + Push<&'a D>,
for<'a, 'a> <T as Columnar>::Container: Push<Ref<'a, T>> + Push<&'a T>,
for<'a, 'a> <R as Columnar>::Container: Push<Ref<'a, R>> + Push<&'a R>,
Per-chunk merge and extract for Column-shaped sorted chunks.
impl<D, T, R> Column<(D, T, R)>where
D: Columnar + Default,
for<'a> Ref<'a, D>: Copy + Ord,
T: Columnar + Default + Clone + PartialOrder,
for<'a> Ref<'a, T>: Copy + Ord,
R: Columnar + Default + Semigroup + for<'a> Semigroup<Ref<'a, R>>,
for<'a> <(D, T, R) as Columnar>::Container: Push<&'a (D, T, R)>,
for<'a, 'a> <D as Columnar>::Container: Push<Ref<'a, D>> + Push<&'a D>,
for<'a, 'a> <T as Columnar>::Container: Push<Ref<'a, T>> + Push<&'a T>,
for<'a, 'a> <R as Columnar>::Container: Push<Ref<'a, R>> + Push<&'a R>,
Per-chunk merge and extract for Column-shaped sorted chunks.
These are the building blocks that [Merger for ColumnMerger] orchestrates
over chains of chunks. They’re inherent methods rather than a trait impl
so the merger can call them without going through any wrapper indirection.
Sourcepub fn merge_from(
&mut self,
others: &mut [Self],
positions: &mut [usize],
) -> bool
pub fn merge_from( &mut self, others: &mut [Self], positions: &mut [usize], ) -> bool
Merge items from sorted inputs into self, advancing positions.
Mirrors the dispatch shape used by the merge-batcher framework:
- 0: no-op
- 1: bulk copy (or swap, if
selfis empty and*pos == 0) - 2: merge two sorted streams, with diff consolidation on equal
(data, time)keys and gallop bulk-copy of long single-side runs.
Returns true if the merge stopped because the amortized ship-threshold
check inside the inner loop fired (the caller should ship self before
the next call). Returns false if the merge stopped because at least
one input was exhausted at its position (the caller should refill that
side; self may still be at capacity from accumulation across short
calls and the caller should also check at_capacity in that case).
The 0- and 1-input dispatches always return false: 0 does no work,
1 is a bulk copy or swap that runs to completion.
Sourcepub fn extract(
&mut self,
position: &mut usize,
upper: AntichainRef<'_, T>,
frontier: &mut Antichain<T>,
keep: &mut Self,
ship: &mut Self,
)
pub fn extract( &mut self, position: &mut usize, upper: AntichainRef<'_, T>, frontier: &mut Antichain<T>, keep: &mut Self, ship: &mut Self, )
Partition records starting at *position into keep (times beyond
upper, retained for the next round) and ship (times not beyond
upper, sealed into the output batch). Updates frontier with the
times of kept records.
The caller invokes extract repeatedly until *position >= self.len(),
swapping out a full output buffer between calls. This shape exists
because the framework only checks at_capacity() between calls, so
without an inner-loop yield a single call could quietly produce
oversized output chunks.
Trait Implementations§
Source§impl<C: Columnar> Accountable for Column<C>
impl<C: Columnar> Accountable for Column<C>
Source§impl<C: Columnar> ContainerBytes for Column<C>
impl<C: Columnar> ContainerBytes for Column<C>
Source§fn from_bytes(bytes: Bytes) -> Self
fn from_bytes(bytes: Bytes) -> Self
Self.Source§fn length_in_bytes(&self) -> usize
fn length_in_bytes(&self) -> usize
Source§fn into_bytes<W: Write>(&self, writer: &mut W)
fn into_bytes<W: Write>(&self, writer: &mut W)
writer.Source§impl<C: Columnar> DrainContainer for Column<C>
impl<C: Columnar> DrainContainer for Column<C>
Source§impl<'a, D, T, R> PushInto<&'a mut Column<(D, T, R)>> for Chunker<ColumnationStack<(D, T, R)>>
impl<'a, D, T, R> PushInto<&'a mut Column<(D, T, R)>> for Chunker<ColumnationStack<(D, T, R)>>
Source§impl<'a, D, T, R> PushInto<&'a mut Column<(D, T, R)>> for ColumnChunker<(D, T, R)>where
D: Columnar,
for<'b> Ref<'b, D>: Copy + Ord,
T: Columnar,
for<'b> Ref<'b, T>: Copy + Ord,
R: Columnar + Default + Semigroup + for<'b> Semigroup<Ref<'b, R>>,
for<'b> Ref<'b, R>: Ord,
for<'b> <D as Columnar>::Container: Push<Ref<'b, D>>,
for<'b> <T as Columnar>::Container: Push<Ref<'b, T>>,
for<'b> <R as Columnar>::Container: Push<&'b R>,
impl<'a, D, T, R> PushInto<&'a mut Column<(D, T, R)>> for ColumnChunker<(D, T, R)>where
D: Columnar,
for<'b> Ref<'b, D>: Copy + Ord,
T: Columnar,
for<'b> Ref<'b, T>: Copy + Ord,
R: Columnar + Default + Semigroup + for<'b> Semigroup<Ref<'b, R>>,
for<'b> Ref<'b, R>: Ord,
for<'b> <D as Columnar>::Container: Push<Ref<'b, D>>,
for<'b> <T as Columnar>::Container: Push<Ref<'b, T>>,
for<'b> <R as Columnar>::Container: Push<&'b R>,
Source§impl<C: Columnar> SizableContainer for Column<C>
impl<C: Columnar> SizableContainer for Column<C>
Source§fn at_capacity(&self) -> bool
fn at_capacity(&self) -> bool
Source§fn ensure_capacity(&mut self, _stash: &mut Option<Self>)
fn ensure_capacity(&mut self, _stash: &mut Option<Self>)
self to its desired capacity, if it has one. Read moreAuto Trait Implementations§
impl<C> Freeze for Column<C>
impl<C> !RefUnwindSafe for Column<C>
impl<C> Send for Column<C>
impl<C> !Sync for Column<C>
impl<C> Unpin for Column<C>
impl<C> UnsafeUnpin for Column<C>
impl<C> !UnwindSafe for Column<C>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::RequestSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
std::ops::AddAssign, for types that do not implement AddAssign.