I'm doing good old debug driven programming and I keep having readability issues because all tuples and structs get split up into million rows. Is there a way to somehow get a more compact dbg output?
e.g. I get from dbg!
[asd/src/data_source.rs:330] &lines[0] = InfluxLine {
line_name: "line",
tags: [
(
"label",
"\"All\"",
),
(
"source",
"wer",
),
(
"query",
"reach_per_mode_hourly",
),
(
"query_type",
"hourly_averages_coeff",
),
(
"measure_name",
"reach",
),
],
Ideally this would be
[asd/src/data_source.rs:330] &lines[0] = InfluxLine {
line_name: "line",
tags: [
( "label", "\"All\"", ),
( "source", "wer", ),
( "query", "reach_per_mode_hourly", ),
( "query_type", "hourly_averages_coeff", ),
( "measure_name", "reach", ),
],