1 2 3 4 5 6 7 8 9 10
struct NoDebug<'a> { a: &'a f64, } #[derive(derive_more::Debug)] struct SomeType<'a> { no_debug: NoDebug<'a>, } fn main() {}