1 2 3 4 5 6 7 8 9 10 11
// mod file_node; pub struct FileType { name: String, description: String, mime_type: String, extensions: Vec<String>, is_binary: bool, } pub struct FileID(usize);