refactor: change function definitions to const for improved performance and clarity

This commit is contained in:
Tunglies
2025-11-06 10:47:25 +08:00
Unverified
parent aaf3ebe547
commit 5a8e83cd49
14 changed files with 18 additions and 17 deletions

View File

@@ -20,7 +20,7 @@ impl Drop for CommandChildGuard {
}
impl CommandChildGuard {
pub fn new(child: CommandChild) -> Self {
pub const fn new(child: CommandChild) -> Self {
Self(Some(child))
}