Struct xcb::ffi::xproto::xcb_expose_event_t [] [src]

#[repr(C)]
pub struct xcb_expose_event_t { pub response_type: u8, pub pad0: u8, pub sequence: u16, pub window: xcb_window_t, pub x: u16, pub y: u16, pub width: u16, pub height: u16, pub count: u16, pub pad1: [u8; 2], }

NOT YET DOCUMENTED

Fields

The exposed (damaged) window.

The X coordinate of the left-upper corner of the exposed rectangle, relative to the window's origin.

The Y coordinate of the left-upper corner of the exposed rectangle, relative to the window's origin.

The width of the exposed rectangle.

The height of the exposed rectangle.

The amount of Expose events following this one. Simple applications that do not want to optimize redisplay by distinguishing between subareas of its window can just ignore all Expose events with nonzero counts and perform full redisplays on events with zero counts.

Trait Implementations

impl Copy for xcb_expose_event_t
[src]

impl Clone for xcb_expose_event_t
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more