1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
use std::fmt;

/// Enum Feature for basic Image Manipulation
#[derive(Debug)]
pub enum ImageManipulation {
    Colors,
    Triggered,
    Wasted,
    Invert,
    Sobel,
    Hog,
    Triangle,
    Blur,
    Angel,
    Satan,
    Hitler,
    Obama,
    Wanted,
    Bad,
    Sith,
    Jail,
    Gay,
    Trash,
    Fedora,
    Delete,
    Pixel,
    Deepfry,
    Mosiac,
    Ascii,
    Stringify,
    Floor,
    Charcoal,
    Poster,
    Sepia,
    Polaroid,
    Swirl,
    Paint,
    Night,
    Solar,
    America,
    Communism,
    Rainbow,
    Magik,
    Spin,
    Comic,
    Burn,
    Freeze,
    Earth,
    PetPet,
    Neon,
    Sketch,
    Glitch,
    Shake,
    Bomb,
    Bonk,
}
/// Image Manipulation that has text
#[derive(Debug)]
pub enum ImageManipulationText {
    ThoughtImage,
    Captcha,
    ModernMeme,
}
/// Multiple text on an image
#[derive(Debug)]
pub enum ImageManipulationTopBottom {
    Motiv,
    RetroMeme,
}

/// Collection of pride flags for the pride endpoint
#[derive(Debug)]
pub enum Pride {
    Asexual,
    Bisexual,
    Gay,
    GenderFluid,
    GenderQueer,
    Intersex,
    Lesbian,
    NonBinary,
    Pan,
    Progress,
    Trans,
    Ally,
    Polysexual,
}

impl fmt::Display for ImageManipulation {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}

impl fmt::Display for ImageManipulationText {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}

impl fmt::Display for ImageManipulationTopBottom {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}

impl fmt::Display for Pride {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}