kronicler 0.1.3

Automatic performance capture and analysis for production applications in Python using a custom columnar database written in Rust.
Documentation
1
2
3
4
5
6
pub trait Metadata<T> {
    /// Save the struct to a file
    fn save(&self);
    /// Load a struct from a file
    fn load(&self) -> T;
}