//! Position types for various widgets.
/// Storing information about where new widgets can be placed
/// inside a [`gtk::Grid`].
#[derive(Debug)]pubstructGridPosition{/// The number of the column.
pubcolumn:i32,
/// The number of the row.
pubrow:i32,
/// The amount of columns the widget should take.
pubwidth:i32,
/// The amount of rows the widget should take.
pubheight:i32,
}#[derive(Debug)]/// Position used for [`gtk::Fixed`].
pubstructFixedPosition{/// Position on the x-axis.
pubx:f64,
/// Position on the y-axis.
puby:f64,
}