rusty-chunkenc 0.1.2

A Rust implementation of Prometheus' chunkenc library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::histogram::{FloatHistogramChunk, HistogramChunk};

impl HistogramChunk {
    pub fn write<W: std::io::Write>(&self, _writer: &mut W) -> std::io::Result<()> {
        unimplemented!()
    }
}

impl FloatHistogramChunk {
    pub fn write<W: std::io::Write>(&self, _writer: &mut W) -> std::io::Result<()> {
        unimplemented!()
    }
}