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
use serde::Serialize;
use serde::Deserialize;
#[derive(Serialize, Deserialize)]
pub struct ResizeMethod(&'static str);
impl ResizeMethod {
pub const SCALE: &'static str = "scale";
pub const FIT: &'static str = "fit";
pub const COVER: &'static str = "cover";
pub const THUMB: &'static str = "thumb";
}
#[derive(Serialize, Deserialize)]
pub struct Resize {
method: String,
pub(crate) width: Option<u32>,
pub(crate) height: Option<u32>,
}
impl Resize {
pub fn new<M>(
method: M,
width: Option<u32>,
height: Option<u32>,
) -> Self
where
M: AsRef<str> + Into<String>,
{
Self {
method: method.into(),
width,
height,
}
}
}
#[derive(Serialize, Deserialize)]
pub struct JsonData {
pub(crate) resize: Resize,
}
impl JsonData {
pub(crate) fn new(resize: Resize) -> Self {
Self {
resize,
}
}
}