From 8cee006e47ba32c1c60e117e9837c10a159e0cb6 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:42:48 -0700 Subject: [PATCH] refactor: Return extended timestamp fields copied rather than borrowed (#183) --- src/extra_fields/extended_timestamp.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/extra_fields/extended_timestamp.rs b/src/extra_fields/extended_timestamp.rs index f173e944..1cc0f1de 100644 --- a/src/extra_fields/extended_timestamp.rs +++ b/src/extra_fields/extended_timestamp.rs @@ -70,18 +70,18 @@ impl ExtendedTimestamp { }) } - /// returns the last modification timestamp - pub fn mod_time(&self) -> Option<&u32> { - self.mod_time.as_ref() + /// returns the last modification timestamp, if defined, as UNIX epoch seconds + pub fn mod_time(&self) -> Option { + self.mod_time } - /// returns the last access timestamp - pub fn ac_time(&self) -> Option<&u32> { - self.ac_time.as_ref() + /// returns the last access timestamp, if defined, as UNIX epoch seconds + pub fn ac_time(&self) -> Option { + self.ac_time } - /// returns the creation timestamp - pub fn cr_time(&self) -> Option<&u32> { - self.cr_time.as_ref() + /// returns the creation timestamp, if defined, as UNIX epoch seconds + pub fn cr_time(&self) -> Option { + self.cr_time } }