pub trait SizeLengths {
type LengthType;
// Required methods
fn width_length(&self) -> Self::LengthType;
fn height_length(&self) -> Self::LengthType;
}
pub trait SizeLengths {
type LengthType;
// Required methods
fn width_length(&self) -> Self::LengthType;
fn height_length(&self) -> Self::LengthType;
}