mz_compute::extensions::arrange

Trait ArrangementSize

Source
pub trait ArrangementSize {
    // Required method
    fn log_arrangement_size(self) -> Self;
}
Expand description

A type that can log its heap size.

Required Methods§

Source

fn log_arrangement_size(self) -> Self

Install a logger to track the heap size of the target.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<G, K, T, R> ArrangementSize for Arranged<G, TraceAgent<Spine<Rc<OrdKeyBatch<MzStack<((K, ()), T, R)>>>>>>
where G: Scope<Timestamp = T>, G::Timestamp: Lattice + Ord, K: Data + Columnation, T: Lattice + Timestamp + Columnation, R: Semigroup + Ord + Columnation + 'static,

Source§

impl<G, K, V, T, R> ArrangementSize for Arranged<G, TraceAgent<Spine<Rc<OrdValBatch<MzStack<((K, V), T, R)>>>>>>
where G: Scope<Timestamp = T>, G::Timestamp: Lattice + Ord + Columnation, K: Data + Columnation, V: Data + Columnation, T: Lattice + Timestamp, R: Semigroup + Ord + Columnation + 'static,

Source§

impl<G, K, V, T, R> ArrangementSize for Arranged<G, TraceAgent<FlatValSpine<MzFlatLayout<K, V, T, R>>>>
where Self: Clone, G: Scope<Timestamp = T::Owned>, G::Timestamp: Lattice + Ord + MzRegionPreference, K: Region + Clone + Push<<K as Region>::Owned> + for<'a> Push<<K as Region>::ReadItem<'a>> + for<'a> ReserveItems<<K as Region>::ReadItem<'a>> + 'static, V: Region + Clone + Push<<V as Region>::Owned> + for<'a> Push<<V as Region>::ReadItem<'a>> + for<'a> ReserveItems<<V as Region>::ReadItem<'a>> + 'static, T: Region + Clone + Push<<T as Region>::Owned> + for<'a> Push<<T as Region>::ReadItem<'a>> + for<'a> ReserveItems<<T as Region>::ReadItem<'a>> + 'static, R: Region + Clone + Push<<R as Region>::Owned> + for<'a> Push<&'a <R as Region>::Owned> + for<'a> Push<<R as Region>::ReadItem<'a>> + for<'a> ReserveItems<<R as Region>::ReadItem<'a>> + 'static, K::Owned: Clone + Ord, V::Owned: Clone + Ord, T::Owned: Lattice + for<'a> PartialOrder<<T as Region>::ReadItem<'a>> + Timestamp, R::Owned: Default + Ord + Semigroup + for<'a> Semigroup<<R as Region>::ReadItem<'a>> + 'static, for<'a> <K as Region>::ReadItem<'a>: Copy + Ord, for<'a> <V as Region>::ReadItem<'a>: Copy + Ord, for<'a> <T as Region>::ReadItem<'a>: Copy + IntoOwned<'a> + Ord + PartialOrder<T::Owned>, for<'a> <R as Region>::ReadItem<'a>: Copy + IntoOwned<'a, Owned = R::Owned> + Ord,

Source§

impl<G, T, R> ArrangementSize for Arranged<G, TraceAgent<Spine<Rc<OrdKeyBatch<RowLayout<((Row, ()), T, R)>>>>>>
where G: Scope<Timestamp = T>, G::Timestamp: Lattice + Ord + Columnation, T: Lattice + Timestamp, R: Semigroup + Ord + Columnation + 'static,

Source§

impl<G, T, R> ArrangementSize for Arranged<G, TraceAgent<Spine<Rc<OrdValBatch<RowRowLayout<((Row, Row), T, R)>>>>>>
where G: Scope<Timestamp = T>, G::Timestamp: Lattice + Ord + Columnation, T: Lattice + Timestamp, R: Semigroup + Ord + Columnation + 'static,

Source§

impl<G, V, T, R> ArrangementSize for Arranged<G, TraceAgent<Spine<Rc<OrdValBatch<RowValLayout<((Row, V), T, R)>>>>>>
where G: Scope<Timestamp = T>, G::Timestamp: Lattice + Ord + Columnation, V: Data + Columnation, T: Lattice + Timestamp, R: Semigroup + Ord + Columnation + 'static,

Implementors§