windowed_stats/experimental/
mod.rs

1// Copyright 2024 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Experimental features.
6//!
7//! This module hosts experimental APIs, most notably round-robin multi-resolution time series.
8
9#![allow(dead_code)]
10
11mod vec1;
12
13pub mod clock;
14pub mod event;
15pub mod series;
16pub mod serve;
17pub mod testing;
18
19pub use crate::experimental::vec1::Vec1;
20
21pub mod prelude {
22    pub use crate::experimental::clock::{DurationExt as _, QuantaExt as _, TimestampExt as _};
23    pub use crate::experimental::series::MatrixSampler;
24}