pub trait Position<Pos> {
    // Required method
    fn position(&self, index: usize) -> Pos;
}
Expand description

Returns the position of an element inside a container like gtk::Grid where the position isn’t clearly defined by the index.

Required Methods§

source

fn position(&self, index: usize) -> Pos

Returns the position.

This function can be called very often if widgets are moved a lot, so it should be cheap to call.

Implementors§

source§

impl<C> Position<()> for C