From 82dbd2ed51827eb17b4c5675d6609b23b25a4ec6 Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Mon, 12 Aug 2024 23:54:03 +0900 Subject: [PATCH] :recycle: Apply inline attribute --- src/command/mount.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/command/mount.rs b/src/command/mount.rs index dd816a0..0deefae 100644 --- a/src/command/mount.rs +++ b/src/command/mount.rs @@ -20,6 +20,7 @@ pub(crate) struct MountArgs { } impl Command for MountArgs { + #[inline] fn execute(self) -> io::Result<()> { let password = ask_password(self.password)?; mount_archive(&self.mount_point, &self.archive, password)