vscodehelper 0.2.0

Understanding the data that VSCode writes to disk
Documentation
1
2
3
4
5
6
7
8
use serde::de::DeserializeOwned;

pub(crate) mod history_recently_opened_paths_list;

pub trait Key {
    const KEY: &'static str;
    type Value: DeserializeOwned;
}