[#[automatically_derived]](https://doc.rust-lang.org/reference/attributes/derive.html) could help us ignore the generated code in the test coverage report. It's used in several crates: - [bevy](https://github.com/bevyengine/bevy/blob/c549b9e9a4489007dd25044ef0f574799773119d/crates/bevy_ecs/macros/src/world_query.rs#L29) - [clap](https://github.com/clap-rs/clap/blob/194c676f60b916506f94f70decdbf319af5d1ec6/clap_derive/src/dummies.rs#L10) - [serde](https://github.com/serde-rs/serde/blob/babafa54d283fb087fa94f50a2cf82fa9e582a7c/serde_derive/src/ser.rs#L32) - [yew](https://github.com/yewstack/yew/blob/122684babe9995a2be5991c28c17f4fd475bd9c8/packages/yew-macro/src/derive_props/builder.rs#L128) Please consider adding it. Thank you for reading my issue.