From d74b74b91ae852ba7339b854f33fed7ed1011a09 Mon Sep 17 00:00:00 2001 From: Andrii Radyk Date: Sat, 20 Jun 2020 21:31:19 +0200 Subject: [PATCH 1/5] clippy sugeestion: redundant_pattern_matching --- src/flamegraph/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flamegraph/mod.rs b/src/flamegraph/mod.rs index b2393484..78f1a695 100644 --- a/src/flamegraph/mod.rs +++ b/src/flamegraph/mod.rs @@ -243,7 +243,7 @@ pub struct Options<'a> { impl<'a> Options<'a> { /// Calculate pad top, including title and subtitle pub(super) fn ypad1(&self) -> usize { - let subtitle_height = if let Some(_) = self.subtitle { + let subtitle_height = if self.subtitle.is_some() { self.font_size * 2 } else { 0 From eb5c6166581e1e72282674adfa2082063db6f504 Mon Sep 17 00:00:00 2001 From: Andrii Radyk Date: Sat, 20 Jun 2020 21:31:19 +0200 Subject: [PATCH 2/5] make func_frameattrs atribute contidional --- src/bin/flamegraph.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/flamegraph.rs b/src/bin/flamegraph.rs index fe343b9f..de96e3f8 100644 --- a/src/bin/flamegraph.rs +++ b/src/bin/flamegraph.rs @@ -393,6 +393,7 @@ mod tests { bgcolors: Some(color::BackgroundColor::Blue), hash: true, palette_map: Default::default(), + #[cfg(feature = "nameattr")] func_frameattrs: Default::default(), direction: Direction::Inverted, negate_differentials: true, From 199480b66942bf7a20bc6f6b33aaa390e138794b Mon Sep 17 00:00:00 2001 From: Andrii Radyk Date: Sat, 20 Jun 2020 21:31:19 +0200 Subject: [PATCH 3/5] add flame chart mode --- src/bin/flamegraph.rs | 14 ++++++++++++++ src/flamegraph/merge.rs | 15 +++++++++------ src/flamegraph/mod.rs | 17 ++++++++++++++--- 3 files changed, 37 insertions(+), 9 deletions(-) diff --git a/src/bin/flamegraph.rs b/src/bin/flamegraph.rs index de96e3f8..e81e9f35 100644 --- a/src/bin/flamegraph.rs +++ b/src/bin/flamegraph.rs @@ -191,6 +191,14 @@ struct Opt { /// Collapsed perf output files. With no PATH, or PATH is -, read STDIN. #[structopt(name = "PATH", parse(from_os_str))] infiles: Vec, + + /// Produce a flame chart (sort by time, do not merge stacks) + #[structopt( + long = "flamechart", + conflicts_with = "no-sort", + conflicts_with = "reverse" + )] + flame_chart: bool, } impl<'a> Opt { @@ -219,6 +227,11 @@ impl<'a> Opt { options.no_javascript = self.no_javascript; options.color_diffusion = self.color_diffusion; options.reverse_stack_order = self.reverse; + options.flame_chart = self.flame_chart; + + if self.flame_chart && self.title == defaults::TITLE { + options.title = "Flame Chart".to_string(); + } // set style options options.subtitle = self.subtitle; @@ -402,6 +415,7 @@ mod tests { reverse_stack_order: true, no_javascript: true, color_diffusion: false, + flame_chart: false, }; assert_eq!(options, expected_options); diff --git a/src/flamegraph/merge.rs b/src/flamegraph/merge.rs index 5919ccca..dfd66e80 100644 --- a/src/flamegraph/merge.rs +++ b/src/flamegraph/merge.rs @@ -108,6 +108,7 @@ fn flow<'a, LI, TI>( pub(super) fn frames<'a, I>( lines: I, + suppress_sort_check: bool, ) -> quick_xml::Result<(Vec>, usize, usize, usize)> where I: IntoIterator, @@ -127,12 +128,14 @@ where continue; } - if let Some(prev_line) = prev_line { - if prev_line > line { - return Err(quick_xml::Error::Io(io::Error::new( - io::ErrorKind::InvalidData, - "unsorted input lines detected", - ))); + if !suppress_sort_check { + if let Some(prev_line) = prev_line { + if prev_line > line { + return Err(quick_xml::Error::Io(io::Error::new( + io::ErrorKind::InvalidData, + "unsorted input lines detected", + ))); + } } } diff --git a/src/flamegraph/mod.rs b/src/flamegraph/mod.rs index 78f1a695..736be733 100644 --- a/src/flamegraph/mod.rs +++ b/src/flamegraph/mod.rs @@ -238,6 +238,11 @@ pub struct Options<'a> { /// useful visual cue of what to focus on, especially if you are showing /// flamegraphs to someone for the first time. pub color_diffusion: bool, + + /// Produce a flame chart (sort by time, do not merge stacks) + /// + /// Note that stack is not sorted and will be reversed + pub flame_chart: bool, } impl<'a> Options<'a> { @@ -298,6 +303,7 @@ impl<'a> Default for Options<'a> { reverse_stack_order: Default::default(), no_javascript: Default::default(), color_diffusion: Default::default(), + flame_chart: Default::default(), #[cfg(feature = "nameattr")] func_frameattrs: Default::default(), @@ -408,15 +414,20 @@ where } let mut reversed: Vec<&str> = reversed.iter().collect(); reversed.sort_unstable(); - merge::frames(reversed)? + merge::frames(reversed, false)? + } else if opt.flame_chart { + // In flame chart mode, just reverse the data so time moves from left to right. + let mut lines: Vec<&str> = lines.into_iter().collect(); + lines.reverse(); + merge::frames(lines, true)? } else if opt.no_sort { // Lines don't need sorting. - merge::frames(lines)? + merge::frames(lines, false)? } else { // Sort lines by default. let mut lines: Vec<&str> = lines.into_iter().collect(); lines.sort_unstable(); - merge::frames(lines)? + merge::frames(lines, false)? }; if ignored != 0 { From 7a5a6a12a50101bd2b551f36858e104bb3a08ff4 Mon Sep 17 00:00:00 2001 From: Andrii Radyk Date: Sat, 20 Jun 2020 21:31:19 +0200 Subject: [PATCH 4/5] add flamechart test case --- src/bin/flamegraph.rs | 2 +- src/flamegraph/mod.rs | 1 + tests/data/flamegraph/flamechart/flame.svg | 1399 +++++++++++++++++++ tests/data/flamegraph/flamechart/flames.txt | 427 ++++++ tests/flamegraph.rs | 14 + 5 files changed, 1842 insertions(+), 1 deletion(-) create mode 100644 tests/data/flamegraph/flamechart/flame.svg create mode 100644 tests/data/flamegraph/flamechart/flames.txt diff --git a/src/bin/flamegraph.rs b/src/bin/flamegraph.rs index e81e9f35..b1607cd7 100644 --- a/src/bin/flamegraph.rs +++ b/src/bin/flamegraph.rs @@ -230,7 +230,7 @@ impl<'a> Opt { options.flame_chart = self.flame_chart; if self.flame_chart && self.title == defaults::TITLE { - options.title = "Flame Chart".to_string(); + options.title = defaults::CHART_TITLE.to_owned(); } // set style options diff --git a/src/flamegraph/mod.rs b/src/flamegraph/mod.rs index 736be733..75b496f5 100644 --- a/src/flamegraph/mod.rs +++ b/src/flamegraph/mod.rs @@ -78,6 +78,7 @@ pub mod defaults { COLORS: &str = "hot", SEARCH_COLOR: &str = "#e600e6", TITLE: &str = "Flame Graph", + CHART_TITLE: &str = "Flame Chart", FRAME_HEIGHT: usize = 16, MIN_WIDTH: f64 = 0.1, FONT_TYPE: &str = "Verdana", diff --git a/tests/data/flamegraph/flamechart/flame.svg b/tests/data/flamegraph/flamechart/flame.svg new file mode 100644 index 00000000..f59acbd3 --- /dev/null +++ b/tests/data/flamegraph/flamechart/flame.svg @@ -0,0 +1,1399 @@ + + + + + + + + + + + + + Flame Chart + + Reset Zoom + Search + + + + Needless_copy_to_u32 (1,700 samples, 0.28%) + + + + + Final (5,300 samples, 0.89%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (5,300 samples, 0.89%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,800 samples, 0.30%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,700 samples, 0.28%) + + + + + Needless_copy_to_u32 (600 samples, 0.10%) + + + + + u8::master_fast_size_for (1,200 samples, 0.20%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,200 samples, 0.20%) + + + + + &[u8]::RLE_get_runs (2,200 samples, 0.37%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (5,700 samples, 0.95%) + + + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + Samples (7,500 samples, 1.25%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,600 samples, 0.27%) + + + + + u8::master_compress (13,000 samples, 2.17%) + + u.. + + + u8::CopyToLowered (1,600 samples, 0.27%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (14,700 samples, 2.46%) + + al.. + + + Final (600 samples, 0.10%) + + + + + Needless_copy_to_u32 (600 samples, 0.10%) + + + + + u8::master_fast_size_for (1,900 samples, 0.32%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,800 samples, 0.30%) + + + + + u8::CopyToLowered (1,900 samples, 0.32%) + + + + + Samples (4,100 samples, 0.69%) + + + + + bool::master_compress (4,900 samples, 0.82%) + + + + + u16::master_compress (1,000 samples, 0.17%) + + + + + Samples (800 samples, 0.13%) + + + + + &[bool]::encode_rle_bool (2,100 samples, 0.35%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (2,000 samples, 0.33%) + + + + + Final (2,200 samples, 0.37%) + + + + + Samples (1,100 samples, 0.18%) + + + + + alloc::vec::Vec<bool>::Boolean_encode_all (8,500 samples, 1.42%) + + + + + bool::master_compress (3,500 samples, 0.58%) + + + + + Final (2,900 samples, 0.48%) + + + + + tree_buf::internal::types::integer::PrefixVarIntCompressor::PrefixVarInt_compress (2,800 samples, 0.47%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,200 samples, 0.20%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_fast_size_for (1,500 samples, 0.25%) + + + + + Needless_copy_to_u32 (1,000 samples, 0.17%) + + + + + u32::master_fast_size_for (7,900 samples, 1.32%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (7,500 samples, 1.25%) + + + + + &[u32]::RLE_get_runs (2,000 samples, 0.33%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for (12,000 samples, 2.01%) + + t.. + + + tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for (2,100 samples, 0.35%) + + + + + Needless_copy_to_u32 (1,100 samples, 0.18%) + + + + + u32::master_compress (25,100 samples, 4.19%) + + u32::.. + + + Samples (22,100 samples, 3.69%) + + Samp.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (7,900 samples, 1.32%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (2,800 samples, 0.47%) + + + + + Needless_copy_to_u32 (1,100 samples, 0.18%) + + + + + Final (2,900 samples, 0.48%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,800 samples, 0.30%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,600 samples, 0.27%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,300 samples, 0.22%) + + + + + Needless_copy_to_u32 (600 samples, 0.10%) + + + + + u8::master_fast_size_for (1,400 samples, 0.23%) + + + + + &[u8]::RLE_get_runs (2,200 samples, 0.37%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (6,000 samples, 1.00%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,200 samples, 0.37%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_compress (11,400 samples, 1.91%) + + u.. + + + Samples (8,400 samples, 1.40%) + + + + + u8::CopyToLowered (900 samples, 0.15%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (39,300 samples, 6.57%) + + alloc::ve.. + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + u8::master_fast_size_for (3,800 samples, 0.64%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (3,800 samples, 0.64%) + + + + + &[u8]::RLE_get_runs (1,800 samples, 0.30%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (6,400 samples, 1.07%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + Samples (11,000 samples, 1.84%) + + S.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (4,500 samples, 0.75%) + + + + + u8::master_compress (13,900 samples, 2.32%) + + u.. + + + alloc::vec::Vec<u8>::Integer_encode_all (14,100 samples, 2.36%) + + a.. + + + tree_buf::internal::types::array_fixed::_20::ArrayEncoder<alloc::vec::Vec<u8>>::ArrayFixed_flush (14,400 samples, 2.41%) + + tr.. + + + Needless_copy_to_u32 (1,800 samples, 0.30%) + + + + + Final (6,400 samples, 1.07%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (6,300 samples, 1.05%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,500 samples, 0.25%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,800 samples, 0.30%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,300 samples, 0.22%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,400 samples, 0.23%) + + + + + &[u8]::RLE_get_runs (2,000 samples, 0.33%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (5,700 samples, 0.95%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,200 samples, 0.37%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_compress (14,500 samples, 2.42%) + + u8.. + + + Samples (8,100 samples, 1.35%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (16,000 samples, 2.67%) + + al.. + + + u8::CopyToLowered (1,400 samples, 0.23%) + + + + + tree_buf::internal::types::array::VecArrayEncoder<graphql::schemas::treebuf::BidTreeBufEncoderArray>::Array_flush (70,100 samples, 11.71%) + + tree_buf::interna.. + + + Needless_copy_to_u32 (1,700 samples, 0.28%) + + + + + Final (6,000 samples, 1.00%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (5,900 samples, 0.99%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,700 samples, 0.28%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,500 samples, 0.25%) + + + + + Needless_copy_to_u32 (600 samples, 0.10%) + + + + + u8::master_fast_size_for (1,300 samples, 0.22%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,200 samples, 0.20%) + + + + + &[u8]::RLE_get_runs (2,400 samples, 0.40%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (5,900 samples, 0.99%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + Samples (7,900 samples, 1.32%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,900 samples, 0.32%) + + + + + u8::master_compress (14,100 samples, 2.36%) + + u.. + + + u8::CopyToLowered (1,500 samples, 0.25%) + + + + + Samples (800 samples, 0.13%) + + + + + u16::master_compress (1,300 samples, 0.22%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (2,200 samples, 0.37%) + + + + + Final (2,500 samples, 0.42%) + + + + + &[bool]::encode_rle_bool (2,400 samples, 0.40%) + + + + + u8::master_fast_size_for (600 samples, 0.10%) + + + + + bool::master_compress (3,900 samples, 0.65%) + + + + + Samples (1,300 samples, 0.22%) + + + + + alloc::vec::Vec<bool>::Boolean_encode_all (4,800 samples, 0.80%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (20,800 samples, 3.48%) + + all.. + + + Needless_copy_to_u32 (1,800 samples, 0.30%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (15,000 samples, 2.51%) + + tr.. + + + Final (15,100 samples, 2.52%) + + Fi.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,200 samples, 0.20%) + + + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + u8::master_fast_size_for (1,500 samples, 0.25%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (3,200 samples, 0.53%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_fast_size_for (3,300 samples, 0.55%) + + + + + &[u8]::RLE_get_runs (2,000 samples, 0.33%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (7,500 samples, 1.25%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (3,700 samples, 0.62%) + + + + + Needless_copy_to_u32 (1,100 samples, 0.18%) + + + + + u8::master_compress (26,600 samples, 4.45%) + + u8::m.. + + + Samples (11,400 samples, 1.91%) + + S.. + + + u8::CopyToLowered (1,700 samples, 0.28%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (28,500 samples, 4.76%) + + alloc:.. + + + tree_buf::internal::types::string::Utf8Compressor::Utf8_compress (2,200 samples, 0.37%) + + + + + &alloc::string::String::master_compress (2,300 samples, 0.38%) + + + + + tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress (79,800 samples, 13.34%) + + tree_buf::internal::.. + + + &alloc::string::String::get_lookup_table (48,900 samples, 8.17%) + + &alloc::str.. + + + Final (80,000 samples, 13.37%) + + Final + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + u8::master_fast_size_for (1,500 samples, 0.25%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,400 samples, 0.23%) + + + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + u8::master_fast_size_for (3,600 samples, 0.60%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (3,500 samples, 0.58%) + + + + + &[u8]::RLE_get_runs (2,000 samples, 0.33%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (7,700 samples, 1.29%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (4,200 samples, 0.70%) + + + + + Needless_copy_to_u32 (1,000 samples, 0.17%) + + + + + u8::master_fast_size_for (12,100 samples, 2.02%) + + u.. + + + u8::CopyToLowered (800 samples, 0.13%) + + + + + &alloc::string::String::get_lookup_table (19,500 samples, 3.26%) + + &al.. + + + tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for (32,900 samples, 5.50%) + + tree_bu.. + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_fast_size_for (1,600 samples, 0.27%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,400 samples, 0.23%) + + + + + &[&alloc::string::String]::RLE_get_runs (3,400 samples, 0.57%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for (6,000 samples, 1.00%) + + + + + Samples (39,500 samples, 6.60%) + + Samples + + + &alloc::string::String::master_compress (119,700 samples, 20.00%) + + &alloc::string::String::master_.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (7,000 samples, 1.17%) + + + + + Needless_copy_to_u32 (1,800 samples, 0.30%) + + + + + Final (7,100 samples, 1.19%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,200 samples, 0.20%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,400 samples, 0.23%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,000 samples, 0.17%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,200 samples, 0.20%) + + + + + &[u8]::RLE_get_runs (1,700 samples, 0.28%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (4,800 samples, 0.80%) + + + + + Needless_copy_to_u32 (1,000 samples, 0.17%) + + + + + Samples (7,000 samples, 1.17%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,100 samples, 0.35%) + + + + + u8::master_compress (14,300 samples, 2.39%) + + u8.. + + + u8::CopyToLowered (1,900 samples, 0.32%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (16,400 samples, 2.74%) + + al.. + + + &alloc::string::String::get_lookup_table (31,800 samples, 5.31%) + + &alloc:.. + + + tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress (48,900 samples, 8.17%) + + tree_buf::i.. + + + Final (49,000 samples, 8.19%) + + Final + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,300 samples, 0.22%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,600 samples, 0.27%) + + + + + Needless_copy_to_u32 (600 samples, 0.10%) + + + + + u8::master_fast_size_for (1,200 samples, 0.20%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,100 samples, 0.18%) + + + + + &[u8]::RLE_get_runs (2,100 samples, 0.35%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (5,300 samples, 0.89%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_fast_size_for (7,400 samples, 1.24%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,100 samples, 0.35%) + + + + + u8::CopyToLowered (700 samples, 0.12%) + + + + + &alloc::string::String::get_lookup_table (8,300 samples, 1.39%) + + + + + tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for (16,900 samples, 2.82%) + + tr.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,500 samples, 0.25%) + + + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,700 samples, 0.28%) + + + + + &[&alloc::string::String]::RLE_get_runs (4,400 samples, 0.74%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for (7,100 samples, 1.19%) + + + + + Samples (24,700 samples, 4.13%) + + Samp.. + + + tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for (600 samples, 0.10%) + + + + + &alloc::string::String::master_compress (73,900 samples, 12.35%) + + &alloc::string::St.. + + + alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush (194,200 samples, 32.45%) + + alloc::vec::Vec<&alloc::string::String>::String_Encod.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (10,100 samples, 1.69%) + + + + + Needless_copy_to_u32 (1,800 samples, 0.30%) + + + + + Final (10,200 samples, 1.70%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,500 samples, 0.25%) + + + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + u8::master_fast_size_for (1,800 samples, 0.30%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,000 samples, 0.33%) + + + + + Needless_copy_to_u32 (800 samples, 0.13%) + + + + + u8::master_fast_size_for (2,100 samples, 0.35%) + + + + + &[u8]::RLE_get_runs (2,300 samples, 0.38%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (6,800 samples, 1.14%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,600 samples, 0.43%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_compress (19,900 samples, 3.33%) + + u8:.. + + + Samples (9,600 samples, 1.60%) + + + + + u8::CopyToLowered (1,600 samples, 0.27%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (21,700 samples, 3.63%) + + allo.. + + + tree_buf::internal::types::boolean::PackedBoolCompressor::compress_PackedBool (700 samples, 0.12%) + + + + + &[bool]::encode_packed_bool (600 samples, 0.10%) + + + + + Final (900 samples, 0.15%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,500 samples, 0.25%) + + + + + Needless_copy_to_u32 (900 samples, 0.15%) + + + + + u8::master_fast_size_for (1,800 samples, 0.30%) + + + + + Samples (4,000 samples, 0.67%) + + + + + u8::CopyToLowered (2,000 samples, 0.33%) + + + + + bool::master_compress (5,100 samples, 0.85%) + + + + + alloc::vec::Vec<bool>::Boolean_encode_all (9,500 samples, 1.59%) + + + + + Needless_copy_to_u32 (2,000 samples, 0.33%) + + + + + Final (21,100 samples, 3.53%) + + Fin.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress (21,000 samples, 3.51%) + + tre.. + + + Needless_copy_to_u32 (700 samples, 0.12%) + + + + + u8::master_fast_size_for (1,900 samples, 0.32%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,700 samples, 0.28%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (15,100 samples, 2.52%) + + tr.. + + + Needless_copy_to_u32 (14,700 samples, 2.46%) + + Ne.. + + + u8::master_fast_size_for (15,300 samples, 2.56%) + + u8.. + + + &[u8]::RLE_get_runs (2,600 samples, 0.43%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for (20,400 samples, 3.41%) + + tre.. + + + Needless_copy_to_u32 (1,200 samples, 0.20%) + + + + + Samples (23,100 samples, 3.86%) + + Samp.. + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,500 samples, 0.42%) + + + + + u8::master_compress (44,400 samples, 7.42%) + + u8::master.. + + + u8::CopyToLowered (3,200 samples, 0.53%) + + + + + alloc::vec::Vec<u64>::Integer_encode_all (57,600 samples, 9.63%) + + alloc::vec::Ve.. + + + tree_buf::internal::types::array::VecArrayEncoder<graphql::schemas::treebuf::BodyShapeTreeBufEncoderArray>::Array_flush (58,400 samples, 9.76%) + + tree_buf::inte.. + + + tree_buf::internal::types::integer::PrefixVarIntCompressor::PrefixVarInt_compress (9,800 samples, 1.64%) + + + + + Final (10,000 samples, 1.67%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (2,000 samples, 0.33%) + + + + + Needless_copy_to_u32 (1,100 samples, 0.18%) + + + + + u8::master_fast_size_for (2,300 samples, 0.38%) + + + + + u8::CopyToLowered (600 samples, 0.10%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,200 samples, 0.20%) + + + + + Needless_copy_to_u32 (1,100 samples, 0.18%) + + + + + u32::master_fast_size_for (1,700 samples, 0.28%) + + + + + &[u32]::RLE_get_runs (2,800 samples, 0.47%) + + + + + tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for (7,900 samples, 1.32%) + + + + + tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for (2,700 samples, 0.45%) + + + + + tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for (1,900 samples, 0.32%) + + + + + Needless_copy_to_u32 (1,700 samples, 0.28%) + + + + + Samples (12,700 samples, 2.12%) + + S.. + + + u32::master_compress (22,900 samples, 3.83%) + + u32:.. + + + u32::CopyToLowered (25,900 samples, 4.33%) + + u32::.. + + + alloc::vec::Vec<u64>::Integer_encode_all (183,900 samples, 30.73%) + + alloc::vec::Vec<u64>::Integer_encode_all + + + alloc::vec::Vec<graphql::schemas::treebuf::Order>::Array_encode_root (597,800 samples, 99.90%) + + alloc::vec::Vec<graphql::schemas::treebuf::Order>::Array_encode_root + + + all (598,400 samples, 100%) + + + + + GraphQL (598,400 samples, 100.00%) + + GraphQL + + + graphql::schemas::treebuf::Response::encode_with_options (598,300 samples, 99.98%) + + graphql::schemas::treebuf::Response::encode_with_options + + + \ No newline at end of file diff --git a/tests/data/flamegraph/flamechart/flames.txt b/tests/data/flamegraph/flamechart/flames.txt new file mode 100644 index 00000000..b2a4bc22 --- /dev/null +++ b/tests/data/flamegraph/flamechart/flames.txt @@ -0,0 +1,427 @@ +GraphQL;graphql::schemas::treebuf::Response::encode_with_options 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root 25300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 134700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::CopyToLowered 25900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for 2700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;&[u32]::RLE_get_runs 2800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::CopyToLowered 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Final;tree_buf::internal::types::integer::PrefixVarIntCompressor::PrefixVarInt_compress 9800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u32::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 3200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 14700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 2000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 18900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all 4400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::CopyToLowered 2000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;tree_buf::internal::types::boolean::PackedBoolCompressor::compress_PackedBool;&[bool]::encode_packed_bool 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;tree_buf::internal::types::boolean::PackedBoolCompressor::compress_PackedBool 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 1600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 8300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&[&alloc::string::String]::RLE_get_runs 4400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for;tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::get_lookup_table 8300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for;tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::CopyToLowered 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;&alloc::string::String::get_lookup_table 31800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;&alloc::string::String::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;&alloc::string::String::master_compress;tree_buf::internal::types::string::Utf8Compressor::Utf8_compress 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 1900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 5200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&[&alloc::string::String]::RLE_get_runs 3400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for;tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::get_lookup_table 19500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;&alloc::string::String::master_fast_size_for;tree_buf::internal::types::string::Utf8Compressor::Utf8_fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::CopyToLowered 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 3200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 2600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;&alloc::string::String::get_lookup_table 48900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;&alloc::string::String::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;&alloc::string::String::master_compress;tree_buf::internal::types::string::Utf8Compressor::Utf8_compress 2200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 2600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 2300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 13100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final;tree_buf::internal::encodings::dictionary::Dictionary<(tree_buf::internal::types::string::Utf8Compressor,)>::compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec<&alloc::string::String>::String_EncoderArray::flush;&alloc::string::String::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::CopyToLowered 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Final;tree_buf::internal::types::integer::PrefixVarIntCompressor::PrefixVarInt_compress 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 1500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 4100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 1400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 4400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress 2400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 3500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 1800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 2900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;bool::master_fast_size_for 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::BytesCompressor::Bytes_compress 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;tree_buf::internal::types::array_fixed::_20::ArrayEncoder>::ArrayFixed_flush 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::CopyToLowered 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 6700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for 2100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;&[u32]::RLE_get_runs 2000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 1000 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 6400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for;tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u32::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::DeltaZigZagCompressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Final;tree_buf::internal::types::integer::PrefixVarIntCompressor::PrefixVarInt_compress 2800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all;u32::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush;alloc::vec::Vec::Integer_encode_all 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;tree_buf::internal::types::array::VecArrayEncoder::Array_flush 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::CopyToLowered 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::CopyToLowered 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::types::integer::PrefixVarIntCompressor::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::PrefixVarIntCompressor)>::fast_size_for 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Final;tree_buf::internal::types::integer::PrefixVarIntCompressor::PrefixVarInt_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all;u16::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;&[bool]::encode_rle_bool 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::CopyToLowered 1900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 1100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Samples 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;tree_buf::internal::types::boolean::PackedBoolCompressor::compress_PackedBool 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final;tree_buf::internal::types::boolean::PackedBoolCompressor::compress_PackedBool;&[bool]::encode_packed_bool 400 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress;Final 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Boolean_encode_all;bool::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::CopyToLowered 1600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 800 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;&[u8]::RLE_get_runs 2200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 600 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::CopyToLowered 300 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for;Needless_copy_to_u32 700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::types::integer::Simple16Compressor::Simple16_fast_size_for 900 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for;u8::master_fast_size_for;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples;tree_buf::internal::encodings::rle::RLE<(tree_buf::internal::types::integer::Simple16Compressor,_tree_buf::internal::types::integer::BytesCompressor)>::fast_size_for 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Samples 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress;Needless_copy_to_u32 1700 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress;Final;tree_buf::internal::types::integer::Simple16Compressor::Simple16_compress 3500 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root;alloc::vec::Vec::Integer_encode_all;u8::master_compress 100 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options;alloc::vec::Vec::Array_encode_root 200 +GraphQL;graphql::schemas::treebuf::Response::encode_with_options 200 +GraphQL 100 diff --git a/tests/flamegraph.rs b/tests/flamegraph.rs index e350ff23..d8d9421f 100644 --- a/tests/flamegraph.rs +++ b/tests/flamegraph.rs @@ -911,3 +911,17 @@ fn flamegraph_colors_truncate_right() { test_flamegraph(input_file, expected_result_file, options).unwrap(); } + +#[test] +fn flamegraph_flamechart() { + let input_file = "./tests/data/flamegraph/flamechart/flames.txt"; + let expected_result_file = "./tests/data/flamegraph/flamechart/flame.svg"; + + let options = flamegraph::Options { + title: flamegraph::defaults::CHART_TITLE.to_owned(), + flame_chart: true, + ..Default::default() + }; + + test_flamegraph(input_file, expected_result_file, options).unwrap(); +} From c122c141119b1400136449f51ea2bf52cfa37271 Mon Sep 17 00:00:00 2001 From: Andrii Radyk Date: Sat, 20 Jun 2020 21:31:19 +0200 Subject: [PATCH 5/5] update changelog with flame chart mode feature --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f54ec57..6a25a911 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added +- Flame chart mode. Flame charts put the passage of time on the x-axis instead of the alphabet. [#125](https://github.com/jonhoo/inferno/pull/125) ### Changed