blob: d48ee34137abfee9685fbfbd87512cf877ba8b8b [file] [log] [blame]
namespace bloaty_report;
struct SizeInfo {
fileActual:uint;
vmActual:uint;
}
table Symbol {
sizes:SizeInfo;
name:string;
maybe_rust_crate:string;
}
table CompileUnit {
sizes:SizeInfo;
symbols:[Symbol];
name:string;
}
table Report {
compileUnits:[CompileUnit];
fileTotal:uint;
vmTotal:uint;
}
root_type Report;