Struct window::Position [] [src]

pub struct Position {
    pub x: i32,
    pub y: i32,
}

Structure to store the window position.

The width and height are in points. On most computers, a point is 1:1 with a pixel. However, this is not universally true. For example, the Apple Retina Display defines 1 point to be a 2x2 square of pixels.

Normally, the consideration of points vs pixels should be left to the host operating system.

Fields

x: i32

The x coordinate.

y: i32

The y coordinate.

Trait Implementations

impl Clone for Position
[src]

fn clone(&self) -> Position

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Position
[src]

impl Debug for Position
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<[i32; 2]> for Position
[src]

fn from(value: [i32; 2]) -> Position

Performs the conversion.

impl From<(i32, i32)> for Position
[src]

fn from(value: (i32, i32)) -> Position

Performs the conversion.