Struct x11rb::protocol::xproto::ClientMessageEvent[][src]

pub struct ClientMessageEvent {
    pub response_type: u8,
    pub format: u8,
    pub sequence: u16,
    pub window: Window,
    pub type_: Atom,
    pub data: ClientMessageData,
}
Expand description

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

  • format - Specifies how to interpret data. Can be either 8, 16 or 32.
  • type - An atom which indicates how the data should be interpreted by the receiving client.
  • data - The data itself (20 bytes max).

See

  • SendEvent: request

Fields

response_type: u8format: u8sequence: u16window: Windowtype_: Atomdata: ClientMessageData

Implementations

Create a new ClientMessageEvent.

This function simplifies the creation of a ClientMessageEvent by applying some useful defaults:

  • response_type = CLIENT_MESSAGE_EVENT
  • sequence = 0

The other fields are set from the parameters given to this function.

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

Performs the conversion.

Performs the conversion.

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