1 2 3 4 5 6 7 8 9 10
pub struct Dimension { pub(crate) width: usize, pub(crate) height: usize, } impl Dimension { pub fn new(width: usize, height: usize) -> Self { Self { width, height } } }