bfree 0.1.20

bfree - memory stats for humans
Documentation
1
2
3
4
5
6
7
8
9
use crate::core::memory_stats::MemoryStats;

pub mod format;
pub mod structured;
pub mod views;

pub trait Renderer {
    fn render(&self, stats: &MemoryStats) -> String;
}