-
Notifications
You must be signed in to change notification settings - Fork 24
Description
Proposal
Problem statement
The current behaviour of the #[derive(Debug)]
macro can be overly broad and not work for some use cases. Users with types that do not fit the derive are forced to either write verbose custom implementations (which they must remember to update when the type is updated), or a 3rd-party derive. These approaches both mean missing out on upstream optimizations to the macro.
Motivating examples or use cases
#[derive(Debug)]
struct FunctionBuilder<'cx> {
cx: &'cx SomeVeryLargeContextType, // Required for the struct, but unecessarily bloats debug output
name: String,
instructions: Vec<Instruction>,
}
#[derive(Debug)]
struct MyListForTraitImpls<T>(Vec<T>); // Should be displayed as a list of elements like `Vec`, but includes the `MyListForTraitImpls` type name
#[derive(Debug)]
struct CallbackRunner {
f: Box<dyn Fn() -> usize>, // We don't want this displayed, but it will fail to compile as `dyn Fn() -> usize` is not `Debug`
name: &'static str,
}
Solution sketch
Introducing a new #[debug(..)]
attribute which can be applied to fields or types to customize the behavior of the derive.
skip
#[debug(skip)]
on a field will cause it to not be emitted, and not require the type of that field to implement Debug
.
Ideally,
#[derive(Debug)]
struct Xxx<T> {
#[debug(skip)]
something: T,
/* other fields that don't use T */
}
should not place a : Debug
bound on T
.
transparent
Similarly to repr(transparent)
, #[debug(transparent)]
may be placed on any type containing a single field to use the debug implementation of that field directly. The macro should expand to something like
/* ... */
Debug::fmt(self.0)
/* ... */
Other ideas
Other attributes that I am less commited to, but could be of use:
#[debug(type)]
- expands to thestd::any::type_name
of the field - useful for function pointers to see the source location#[debug(format_with = "path")]
- a more general version oftype
, allowing a custom function to be used to format the field#[debug(rename = "identifier")]
- changes the name of a field in the debug output
Alternatives
The main alternative is using a 3rd-party crate such as derivative
. The reasoning against this is explained in the problem statement.
Links and related work
Derivative - One of the top 350 most downloaded crates on crates.io.
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.