Standardize on 'Error, Debug' derive order

This commit is contained in:
David Tolnay 2024-12-07 08:48:24 -08:00
parent 2096b11bed
commit 42b1460612
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
3 changed files with 5 additions and 5 deletions

View file

@ -271,13 +271,13 @@ fn test_macro_rules() {
macro_rules! decl_error {
($variant:ident($value:ident)) => {
#[derive(Debug, Error)]
#[derive(Error, Debug)]
pub enum Error0 {
#[error("{0:?}")]
$variant($value),
}
#[derive(Debug, Error)]
#[derive(Error, Debug)]
#[error("{0:?}")]
pub enum Error1 {
$variant($value),

View file

@ -12,7 +12,7 @@ fn test_unused_qualifications() {
// std::error::Error is already imported in the caller's scope so it must
// suppress unused_qualifications.
#[derive(Debug, Error)]
#[derive(Error, Debug)]
#[error("...")]
pub struct MyError;
@ -24,7 +24,7 @@ fn test_needless_lifetimes() {
#![allow(dead_code)]
#![deny(clippy::needless_lifetimes)]
#[derive(Debug, Error)]
#[derive(Error, Debug)]
#[error("...")]
pub enum MyError<'a> {
A(#[from] std::io::Error),

View file

@ -1,6 +1,6 @@
use thiserror::Error;
#[derive(Debug, Error)]
#[derive(Error, Debug)]
pub struct Error {
#[source]
source: std::io::Error,