Struct ClientMessageEvent
pub struct ClientMessageEvent {
pub response_type: u8,
pub format: u8,
pub sequence: u16,
pub window: u32,
pub type_: u32,
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 interpretdata
. 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: u8
§format: u8
§sequence: u16
§window: u32
§type_: u32
§data: ClientMessageData
Implementations§
§impl ClientMessageEvent
impl ClientMessageEvent
pub fn new(
format: u8,
window: u32,
type_: impl Into<u32>,
data: impl Into<ClientMessageData>,
) -> ClientMessageEvent
pub fn new( format: u8, window: u32, type_: impl Into<u32>, data: impl Into<ClientMessageData>, ) -> ClientMessageEvent
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§
§impl Clone for ClientMessageEvent
impl Clone for ClientMessageEvent
§fn clone(&self) -> ClientMessageEvent
fn clone(&self) -> ClientMessageEvent
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ClientMessageEvent
impl Debug for ClientMessageEvent
§impl Serialize for ClientMessageEvent
impl Serialize for ClientMessageEvent
§impl TryParse for ClientMessageEvent
impl TryParse for ClientMessageEvent
§fn try_parse(
initial_value: &[u8],
) -> Result<(ClientMessageEvent, &[u8]), ParseError>
fn try_parse( initial_value: &[u8], ) -> Result<(ClientMessageEvent, &[u8]), ParseError>
Try to parse the given values into an instance of this type. Read more
impl Copy for ClientMessageEvent
Auto Trait Implementations§
impl Freeze for ClientMessageEvent
impl RefUnwindSafe for ClientMessageEvent
impl Send for ClientMessageEvent
impl Sync for ClientMessageEvent
impl Unpin for ClientMessageEvent
impl UnwindSafe for ClientMessageEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<OwnedFd>,
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd>, ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more