pub enum RangeAssemblerPayload {
Rows(Vec<AssemblerRow>),
ExactAggregatePartial(ExactAggregatePartial),
OrderedAggregateInput(OrderedAggregateInput),
}Expand description
Typed payloads accepted from a completed range session.
Variants§
Rows(Vec<AssemblerRow>)
ExactAggregatePartial(ExactAggregatePartial)
OrderedAggregateInput(OrderedAggregateInput)
Trait Implementations§
Source§impl Clone for RangeAssemblerPayload
impl Clone for RangeAssemblerPayload
Source§fn clone(&self) -> RangeAssemblerPayload
fn clone(&self) -> RangeAssemblerPayload
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RangeAssemblerPayload
impl Debug for RangeAssemblerPayload
Source§impl PartialEq for RangeAssemblerPayload
impl PartialEq for RangeAssemblerPayload
impl StructuralPartialEq for RangeAssemblerPayload
Auto Trait Implementations§
impl Freeze for RangeAssemblerPayload
impl RefUnwindSafe for RangeAssemblerPayload
impl Send for RangeAssemblerPayload
impl Sync for RangeAssemblerPayload
impl Unpin for RangeAssemblerPayload
impl UnsafeUnpin for RangeAssemblerPayload
impl UnwindSafe for RangeAssemblerPayload
Blanket Implementations§
impl<T> Allocation for T
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