Struct x11rb_protocol::protocol::xproto::ConfigureWindowRequest
source · pub struct ConfigureWindowRequest<'input> {
pub window: Window,
pub value_list: Cow<'input, ConfigureWindowAux>,
}
Expand description
Configures window attributes.
Configures a window’s size, position, border width and stacking order.
§Fields
window
- The window to configure.value_list
- New values, corresponding to the attributes in value_mask. The order has to correspond to the order of possiblevalue_mask
bits. See the example.
§Errors
Match
- You specified a Sibling without also specifying StackMode or the window is not actually a Sibling.Window
- The specified window does not exist. TODO: any other reason?Value
- TODO: reasons?
§See
MapNotify
: eventExpose
: event
§Example
/*
* Configures the given window to the left upper corner
* with a size of 1024x768 pixels.
*
*/
void my_example(xcb_connection_t *c, xcb_window_t window) {
uint16_t mask = 0;
mask |= XCB_CONFIG_WINDOW_X;
mask |= XCB_CONFIG_WINDOW_Y;
mask |= XCB_CONFIG_WINDOW_WIDTH;
mask |= XCB_CONFIG_WINDOW_HEIGHT;
const uint32_t values[] = {
0, /* x */
0, /* y */
1024, /* width */
768 /* height */
};
xcb_configure_window(c, window, mask, values);
xcb_flush(c);
}
Fields§
§window: Window
§value_list: Cow<'input, ConfigureWindowAux>
Implementations§
source§impl<'input> ConfigureWindowRequest<'input>
impl<'input> ConfigureWindowRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
pub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &'input [u8]
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &'input [u8] ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
sourcepub fn into_owned(self) -> ConfigureWindowRequest<'static>
pub fn into_owned(self) -> ConfigureWindowRequest<'static>
Clone all borrowed data in this ConfigureWindowRequest.
Trait Implementations§
source§impl<'input> Clone for ConfigureWindowRequest<'input>
impl<'input> Clone for ConfigureWindowRequest<'input>
source§fn clone(&self) -> ConfigureWindowRequest<'input>
fn clone(&self) -> ConfigureWindowRequest<'input>
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 moresource§impl<'input> Debug for ConfigureWindowRequest<'input>
impl<'input> Debug for ConfigureWindowRequest<'input>
source§impl<'input> Default for ConfigureWindowRequest<'input>
impl<'input> Default for ConfigureWindowRequest<'input>
source§fn default() -> ConfigureWindowRequest<'input>
fn default() -> ConfigureWindowRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'de, 'input> Deserialize<'de> for ConfigureWindowRequest<'input>
impl<'de, 'input> Deserialize<'de> for ConfigureWindowRequest<'input>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'input> Hash for ConfigureWindowRequest<'input>
impl<'input> Hash for ConfigureWindowRequest<'input>
source§impl<'input> Ord for ConfigureWindowRequest<'input>
impl<'input> Ord for ConfigureWindowRequest<'input>
source§fn cmp(&self, other: &ConfigureWindowRequest<'input>) -> Ordering
fn cmp(&self, other: &ConfigureWindowRequest<'input>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'input> PartialEq for ConfigureWindowRequest<'input>
impl<'input> PartialEq for ConfigureWindowRequest<'input>
source§fn eq(&self, other: &ConfigureWindowRequest<'input>) -> bool
fn eq(&self, other: &ConfigureWindowRequest<'input>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'input> PartialOrd for ConfigureWindowRequest<'input>
impl<'input> PartialOrd for ConfigureWindowRequest<'input>
source§fn partial_cmp(
&self,
other: &ConfigureWindowRequest<'input>
) -> Option<Ordering>
fn partial_cmp( &self, other: &ConfigureWindowRequest<'input> ) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<'input> Request for ConfigureWindowRequest<'input>
impl<'input> Request for ConfigureWindowRequest<'input>
source§impl<'input> Serialize for ConfigureWindowRequest<'input>
impl<'input> Serialize for ConfigureWindowRequest<'input>
impl<'input> Eq for ConfigureWindowRequest<'input>
impl<'input> StructuralPartialEq for ConfigureWindowRequest<'input>
impl<'input> VoidRequest for ConfigureWindowRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ConfigureWindowRequest<'input>
impl<'input> RefUnwindSafe for ConfigureWindowRequest<'input>
impl<'input> Send for ConfigureWindowRequest<'input>
impl<'input> Sync for ConfigureWindowRequest<'input>
impl<'input> Unpin for ConfigureWindowRequest<'input>
impl<'input> UnwindSafe for ConfigureWindowRequest<'input>
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