Open
Description
openedon Oct 6, 2016
Could we have something like this?
#[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).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment