timeless 0.0.1-alpha

A crate to store in-memory timeseries data.
Documentation
1
2
3
4
5
6
7
8
//! This is code responsible for *non-chunked* data
//! corresponding to times in a [`crate::time::OffsetTimeList`].
//! AKA, this is just one giant timespan with no breaks.

/// A struct representing data that will not have any breaks;
/// if you use this, you are assuming each time will have a
/// corresponding value.
pub struct NonChunkedData<T>(Vec<T>);