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
response_type: u8
format: u8
Specifies how to interpret data
. Can be either 8, 16 or 32.
sequence: u16
window: xcb_window_t
type_: xcb_atom_t
An atom which indicates how the data should be interpreted by the receiving client.
data: xcb_client_message_data_t
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]
fn clone(&self) -> xcb_client_message_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