rosin-core 0.3.1

Rosin is a GUI library that aims to be extremely easy to use.
Documentation
1
2
3
4
5
6
7
use std::{path::PathBuf, time::SystemTime};

#[derive(Debug, Clone)]
pub(crate) struct ResourceInfo {
    pub last_modified: SystemTime,
    pub path: PathBuf,
}