use std::time::{Duration, SystemTime};
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct Metadata {
accessed: Duration,
created: Duration,
modified: Duration,
}
impl Metadata {
pub const fn new(accessed: Duration, created: Duration, modified: Duration) -> Self {
Metadata {
accessed,
created,
modified,
}
}
pub fn accessed(&self) -> SystemTime {
SystemTime::UNIX_EPOCH + self.accessed
}
pub fn created(&self) -> SystemTime {
SystemTime::UNIX_EPOCH + self.created
}
pub fn modified(&self) -> SystemTime {
SystemTime::UNIX_EPOCH + self.modified
}
}