Remove AggregatableTdim and AggregatorTdim

This commit is contained in:
Dominik Werder
2021-06-09 20:16:32 +02:00
parent ba7ea80093
commit 131283fab9
6 changed files with 7 additions and 443 deletions
+1 -2
View File
@@ -3,7 +3,6 @@ Aggregation and binning support.
*/
use super::eventchunker::EventFull;
use crate::agg::binnedt::AggregatableTdim;
use crate::agg::eventbatch::MinMaxAvgScalarEventBatch;
use crate::agg::streams::StreamItem;
use crate::binned::{RangeCompletableItem, StreamKind};
@@ -32,7 +31,7 @@ pub trait AggregatableXdim1Bin<SK>
where
SK: StreamKind,
{
type Output: AggregatableXdim1Bin<SK> + AggregatableTdim<SK>;
type Output: AggregatableXdim1Bin<SK>;
fn into_agg(self) -> Self::Output;
}