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 } }