devtools_wire_format/
sources.rs

1mod generated {
2    #![allow(warnings)]
3    #![allow(clippy::all, clippy::pedantic)]
4    include!("./generated/rs.devtools.sources.rs");
5}
6
7use bitflags::bitflags;
8pub use generated::*;
9
10bitflags! {
11    pub struct FileType: u32 {
12        const DIR      = 1 << 0;
13        const FILE     = 1 << 1;
14        const SYMLINK  = 1 << 2;
15        const ASSET    = 1 << 3;
16        const RESOURCE = 1 << 4;
17    }
18}