rspack-allocative 0.3.5

Inspect rust object tree and output it as flamegraph
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg(feature = "ustr")]


use crate::Allocative;
use crate::Visitor;

impl Allocative for ustr::Ustr {
    fn visit<'a, 'b: 'a>(&self, _visitor: &'a mut Visitor<'b>) {
        // ignore global cache
    }
}