usestd::sync::Arc;useserde::{Deserialize, Serialize};/// Image ID, and other useful info.
#[derive(Clone, Debug, Deserialize, Serialize)]pubstructImage{/// Aspect ratio.
////// width / height
pubaspect:Option<f32>,
/// Original image width.
pubwidth:Option<f32>,
/// Original image height.
pubheight:Option<f32>,
/// Cloudflare image storage id.
////// This will _usually_ be a UUID, but it's not guaranteed to be.
pubid:Arc<str>,
}