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

View File

@@ -1,4 +1,3 @@
use crate::agg::binnedt::AggregatableTdim;
use crate::agg::binnedt2::AggregatableTdim2;
use crate::agg::binnedt3::{Agg3, BinnedT3Stream};
use crate::agg::binnedt4::{
@@ -707,16 +706,7 @@ pub trait RangeOverlapInfo {
}
pub trait XBinnedEvents<SK>:
Sized
+ Unpin
+ Send
+ Serialize
+ DeserializeOwned
+ AggregatableTdim<SK>
+ WithLen
+ WithTimestamps
+ PushableIndex
+ Appendable
Sized + Unpin + Send + Serialize + DeserializeOwned + WithLen + WithTimestamps + PushableIndex + Appendable
where
SK: StreamKind,
{