subconverter 0.2.34

A more powerful utility to convert between proxy subscription format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Configuration type definitions used by the parser.
//! For the main proxy model definitions, see crate::models

/// Enum representing different configuration formats supported by the parser
#[derive(Debug, Clone, PartialEq)]
pub enum ConfType {
    Unknown,
    SS,
    SSR,
    V2Ray,
    SSConf,
    SSTap,
    Netch,
    SOCKS,
    HTTP,
    SUB,
    Local,
}