cloudinary 0.8.2

A Rust library for the Cloudinary API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use core::fmt;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum BackgroundRemoval {
    CloudinaryAi,
    Pixelz,
}

impl fmt::Display for BackgroundRemoval {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            BackgroundRemoval::CloudinaryAi => write!(f, "cloudinary_ai"),
            BackgroundRemoval::Pixelz => write!(f, "pixelz"),
        }
    }
}