logo
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: i32

The number of the column.

row: i32

The number of the row.

width: i32

The amount of columns the widget should take.

height: i32

The amount of rows the widget should take.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.