Struct redwm::imports::GetGeometryReply[][src]

pub struct GetGeometryReply {
    pub depth: u8,
    pub sequence: u16,
    pub length: u32,
    pub root: u32,
    pub x: i16,
    pub y: i16,
    pub width: u16,
    pub height: u16,
    pub border_width: u16,
}
Expand description

Fields

  • root - Root window of the screen containing drawable.
  • x - The X coordinate of drawable. If drawable is a window, the coordinate specifies the upper-left outer corner relative to its parent’s origin. If drawable is a pixmap, the X coordinate is always 0.
  • y - The Y coordinate of drawable. If drawable is a window, the coordinate specifies the upper-left outer corner relative to its parent’s origin. If drawable is a pixmap, the Y coordinate is always 0.
  • width - The width of drawable.
  • height - The height of drawable.
  • border_width - The border width (in pixels).
  • depth - The depth of the drawable (bits per pixel for the object).

Fields

depth: u8sequence: u16length: u32root: u32x: i16y: i16width: u16height: u16border_width: u16

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Try to parse the given values into an instance of this type. 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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

Try to parse the given values into an instance of this type. Read more