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

#[repr(C)]
pub struct xcb_client_message_event_t { pub response_type: u8, pub format: u8, pub sequence: u16, pub window: xcb_window_t, pub type_: xcb_atom_t, pub data: xcb_client_message_data_t, }

NOT YET DOCUMENTED

This event represents a ClientMessage, sent by another X11 client. An example is a client sending the _NET_WM_STATE ClientMessage to the root window to indicate the fullscreen window state, effectively requesting that the window manager puts it into fullscreen mode.

Fields

Specifies how to interpret data. Can be either 8, 16 or 32.

An atom which indicates how the data should be interpreted by the receiving client.

The data itself (20 bytes max).

Trait Implementations

impl Copy for xcb_client_message_event_t
[src]

impl Clone for xcb_client_message_event_t
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more