1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; #[derive(Clone, Serialize, Deserialize, Debug)] pub struct MultipartOption { pub form_key: String, pub path: String, pub file_name: String, pub mime: String, }