pub trait CoordMapper {
type Output;
fn map<CT>(
coord_trans: &CT,
from: &<CT as CoordTranslate>::From,
rect: &Rect
) -> Self::Output
where
CT: CoordTranslate;
}pub trait CoordMapper {
type Output;
fn map<CT>(
coord_trans: &CT,
from: &<CT as CoordTranslate>::From,
rect: &Rect
) -> Self::Output
where
CT: CoordTranslate;
}