1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Experimental features.
//!
//! This module hosts experimental APIs, most notably round-robin multi-resolution time series.

#![allow(dead_code)]

mod ring_buffer;
mod vec1;

pub mod clock;
pub mod series;
pub mod serve;
pub mod testing;

pub use crate::experimental::vec1::Vec1;

pub mod prelude {
    pub use crate::experimental::clock::{DurationExt as _, QuantaExt as _, TimestampExt as _};
    pub use crate::experimental::series::{MatrixSampler, Sampler};
}