Function created [src]
Returns the time the file was created in nanoseconds since UTC 1970-01-01.
This never returns null, only returning an optional for compatibility with other OSes
Prototype
pub fn created(self: Self) ?i128
Parameters
self: Self
Source
pub fn created(self: Self) ?i128 {
return self.creation_time;
}