1 2 3 4 5 6 7 8 9 10 11
use serde::{Deserialize, Serialize}; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct File { pub has_webp: bool, pub has_avif: bool, pub width: usize, pub height: usize, pub hash: String, pub name: String, }