It would be nice to be able to declare different formatting for the pretty printing representation.
For example, fields that are skipped in normal mode could be printed in the pretty mode:
#[derive(CustomDebug)]
TestingError {
message: String,
#[debug(skip)]
#[pretty]
logs: Vec<String>,
}