pub trait MenuIndexFromScreenCoord {
    fn menu_index_from_screen_coord<T, 'a>(
        &self,
        menu: &'a Menu<T>,
        coord: Coord
    ) -> Option<usize>
    where
        T: Copy
; }

Required Methods

Implementations on Foreign Types

Implementors