@@ -191,7 +191,7 @@ pub trait MetadataExt {
191191 /// ```
192192 #[ stable( feature = "metadata_ext2" , since = "1.8.0" ) ]
193193 fn st_size ( & self ) -> u64 ;
194- /// Returns the last access time.
194+ /// Returns the last access time of the file, in seconds since Unix Epoch .
195195 ///
196196 /// # Examples
197197 ///
@@ -208,7 +208,9 @@ pub trait MetadataExt {
208208 /// ```
209209 #[ stable( feature = "metadata_ext2" , since = "1.8.0" ) ]
210210 fn st_atime ( & self ) -> i64 ;
211- /// Returns the last access time, nano seconds part.
211+ /// Returns the last access time of the file, in nanoseconds since [`st_atime`].
212+ ///
213+ /// [`st_atime`]: #tymethod.st_atime
212214 ///
213215 /// # Examples
214216 ///
@@ -225,7 +227,7 @@ pub trait MetadataExt {
225227 /// ```
226228 #[ stable( feature = "metadata_ext2" , since = "1.8.0" ) ]
227229 fn st_atime_nsec ( & self ) -> i64 ;
228- /// Returns the last modification time.
230+ /// Returns the last modification time of the file, in seconds since Unix Epoch .
229231 ///
230232 /// # Examples
231233 ///
@@ -242,7 +244,9 @@ pub trait MetadataExt {
242244 /// ```
243245 #[ stable( feature = "metadata_ext2" , since = "1.8.0" ) ]
244246 fn st_mtime ( & self ) -> i64 ;
245- /// Returns the last modification time, nano seconds part.
247+ /// Returns the last modification time of the file, in nanoseconds since [`st_mtime`].
248+ ///
249+ /// [`st_mtime`]: #tymethod.st_mtime
246250 ///
247251 /// # Examples
248252 ///
@@ -259,7 +263,7 @@ pub trait MetadataExt {
259263 /// ```
260264 #[ stable( feature = "metadata_ext2" , since = "1.8.0" ) ]
261265 fn st_mtime_nsec ( & self ) -> i64 ;
262- /// Returns the last status change time.
266+ /// Returns the last status change time of the file, in seconds since Unix Epoch .
263267 ///
264268 /// # Examples
265269 ///
@@ -276,7 +280,9 @@ pub trait MetadataExt {
276280 /// ```
277281 #[ stable( feature = "metadata_ext2" , since = "1.8.0" ) ]
278282 fn st_ctime ( & self ) -> i64 ;
279- /// Returns the last status change time, nano seconds part.
283+ /// Returns the last status change time of the file, in nanoseconds since [`st_ctime`].
284+ ///
285+ /// [`st_ctime`]: #tymethod.st_ctime
280286 ///
281287 /// # Examples
282288 ///
0 commit comments