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
response_type: u8
pad0: u8
sequence: u16
window: xcb_window_t
The exposed (damaged) window.
x: u16
The X coordinate of the left-upper corner of the exposed rectangle, relative to
the window
's origin.
y: u16
The Y coordinate of the left-upper corner of the exposed rectangle, relative to
the window
's origin.
width: u16
The width of the exposed rectangle.
height: u16
The height of the exposed rectangle.
count: u16
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.
pad1: [u8; 2]
Trait Implementations
impl Copy for xcb_expose_event_t
[src]
impl Clone for xcb_expose_event_t
[src]
fn clone(&self) -> xcb_expose_event_t
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