use crate::fixed_point_resident::FixedPointResidentGraph;
#[derive(Clone, Debug, PartialEq)]
pub(super) struct FixedPointResidentGraphCacheEntry {
pub(super) retained_bytes: usize,
pub(super) last_seen: u64,
pub(super) graph: FixedPointResidentGraph,
}