From cf011f46e45f8b75fd797413592405efb8620c56 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 11 Feb 2025 18:11:55 +0900 Subject: [PATCH] Unify derive macro order --- src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.rs b/src/process.rs index d4051fb..89b694e 100644 --- a/src/process.rs +++ b/src/process.rs @@ -13,7 +13,7 @@ use crate::sys; /// This type represents the status code the current process can return /// to its parent under normal termination. -#[derive(Clone, Copy, Debug)] +#[derive(Debug, Clone, Copy)] pub struct ExitCode(u8); impl ExitCode {