1/// # Dimension for an image 2#[derive(Clone, PartialEq, Eq)] 3pub struct Dimension { 4 pub width: String, 5 pub height: String 6}