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