Skip to main content

weir/
fixed_point_resident_cache.rs

1//! Cache for backend-resident fixed-point graph layouts.
2
3mod cache;
4mod entry;
5mod retained;
6mod stats;
7
8#[cfg(test)]
9mod tests;
10
11pub use cache::FixedPointResidentGraphCache;
12pub use stats::FixedPointResidentGraphCacheStats;
13
14pub(crate) use retained::retained_graph_bytes;