try-cli 0.1.4

Lightweight, time-sensitive directory navigation for experiments — a fast way to jump between temporary project folders
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::PathBuf;
use std::time::SystemTime;

#[derive(Clone, Debug)]
pub struct TryDir {
    pub basename: String,
    pub path: PathBuf,
    pub ctime: Option<SystemTime>,
    pub mtime: Option<SystemTime>,
    pub score: f64,
    pub size: Option<u64>,
}