Could we have something like this? ``` rust #[derive(Debug)] struct Foo { pub a: A, pub b: B, #[skip_derive] pub c: C, // especially useful if C : !Debug } ``` This could also feasibly be applied to other auto-derivations, of course (not just Debug).