cargo_resources/
resource_encoding.rs

1/// What sort of file encoding the resource is using (i.e. text or binary)
2#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
3pub enum ResourceEncoding {
4    Txt,
5    Bin,
6}