aboutsummaryrefslogtreecommitdiff
path: root/src/field/utils/banner_type.rs
blob: eb4e10c53b4b679662da46f60e873f2da28cbd1a (plain)
1
2
3
4
5
6
7
8
9
#[repr(u16)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BannerType {
    URL = 1,
    JPEG = 3,
    GIF = 4,
    BMP = 5,
    PICT = 6,
}