We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
09f247a
Fix raw identifier fields in format arguments (#108, thanks @ninevra)
#[derive(Error, Debug)] #[error("raw identifier: {r#type}")] pub struct Error { r#type: i32, }
Fix Rust keyword named format arguments (#109)
#[derive(Error, Debug)] #[error("keyword: {type}", type = 1)] pub struct Error;