libsubconverter/parser/types.rs
1//! Configuration type definitions used by the parser.
2//! For the main proxy model definitions, see crate::models
3
4/// Enum representing different configuration formats supported by the parser
5#[derive(Debug, Clone, PartialEq)]
6pub enum ConfType {
7 Unknown,
8 SS,
9 SSR,
10 V2Ray,
11 SSConf,
12 SSTap,
13 Netch,
14 SOCKS,
15 HTTP,
16 SUB,
17 Local,
18}