pub trait CoordMapper {
    type Output;

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

Required Associated Types

Required Methods

Implementors