pub struct GridPosition {
pub column: i32,
pub row: i32,
pub width: i32,
pub height: i32,
}Expand description
Storing information about where new widgets can be placed
inside a gtk::Grid.
Fields§
§column: i32The number of the column.
row: i32The number of the row.
width: i32The amount of columns the widget should take.
height: i32The amount of rows the widget should take.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GridPosition
impl RefUnwindSafe for GridPosition
impl Send for GridPosition
impl Sync for GridPosition
impl Unpin for GridPosition
impl UnwindSafe for GridPosition
Blanket Implementations§
Source§impl<C> AsyncPosition<()> for C
impl<C> AsyncPosition<()> for C
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more