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
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct Attachment {
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(skip)]
pub file: Vec<u8>,
pub filename: String,
pub id: u64,
}
impl Attachment {
pub const fn from_bytes(filename: String, file: Vec<u8>, id: u64) -> Self {
Self {
description: None,
file,
filename,
id,
}
}
pub fn description(&mut self, description: String) {
self.description = Some(description);
}
}