Struct x11rb_protocol::protocol::xproto::ChangePropertyRequest
source · pub struct ChangePropertyRequest<'input> {
pub mode: PropMode,
pub window: Window,
pub property: Atom,
pub type_: Atom,
pub format: u8,
pub data_len: u32,
pub data: Cow<'input, [u8]>,
}
Expand description
Changes a window property.
Sets or updates a property on the specified window
. Properties are for
example the window title (WM_NAME
) or its minimum size (WM_NORMAL_HINTS
).
Protocols such as EWMH also use properties - for example EWMH defines the
window title, encoded as UTF-8 string, in the _NET_WM_NAME
property.
§Fields
window
- The window whose property you want to change.mode
-property
- The property you want to change (an atom).type
- The type of the property you want to change (an atom).format
- Specifies whether the data should be viewed as a list of 8-bit, 16-bit or 32-bit quantities. Possible values are 8, 16 and 32. This information allows the X server to correctly perform byte-swap operations as necessary.data_len
- Specifies the number of elements (seeformat
).data
- The property data.
§Errors
Match
- TODO: reasons?Value
- TODO: reasons?Window
- The specifiedwindow
does not exist.Atom
-property
ortype
do not refer to a valid atom.Alloc
- The X server could not store the property (no memory?).
§See
InternAtom
: requestxprop
: program
§Example
/*
* Sets the WM_NAME property of the window to "XCB Example".
*
*/
void my_example(xcb_connection_t *conn, xcb_window_t window) {
xcb_change_property(conn,
XCB_PROP_MODE_REPLACE,
window,
XCB_ATOM_WM_NAME,
XCB_ATOM_STRING,
8,
strlen("XCB Example"),
"XCB Example");
xcb_flush(conn);
}
Fields§
§mode: PropMode
§window: Window
§property: Atom
§type_: Atom
§format: u8
§data_len: u32
§data: Cow<'input, [u8]>
Implementations§
source§impl<'input> ChangePropertyRequest<'input>
impl<'input> ChangePropertyRequest<'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) -> ChangePropertyRequest<'static>
pub fn into_owned(self) -> ChangePropertyRequest<'static>
Clone all borrowed data in this ChangePropertyRequest.
Trait Implementations§
source§impl<'input> Clone for ChangePropertyRequest<'input>
impl<'input> Clone for ChangePropertyRequest<'input>
source§fn clone(&self) -> ChangePropertyRequest<'input>
fn clone(&self) -> ChangePropertyRequest<'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 ChangePropertyRequest<'input>
impl<'input> Debug for ChangePropertyRequest<'input>
source§impl<'input> Default for ChangePropertyRequest<'input>
impl<'input> Default for ChangePropertyRequest<'input>
source§fn default() -> ChangePropertyRequest<'input>
fn default() -> ChangePropertyRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'de, 'input> Deserialize<'de> for ChangePropertyRequest<'input>
impl<'de, 'input> Deserialize<'de> for ChangePropertyRequest<'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 ChangePropertyRequest<'input>
impl<'input> Hash for ChangePropertyRequest<'input>
source§impl<'input> Ord for ChangePropertyRequest<'input>
impl<'input> Ord for ChangePropertyRequest<'input>
source§fn cmp(&self, other: &ChangePropertyRequest<'input>) -> Ordering
fn cmp(&self, other: &ChangePropertyRequest<'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 ChangePropertyRequest<'input>
impl<'input> PartialEq for ChangePropertyRequest<'input>
source§fn eq(&self, other: &ChangePropertyRequest<'input>) -> bool
fn eq(&self, other: &ChangePropertyRequest<'input>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'input> PartialOrd for ChangePropertyRequest<'input>
impl<'input> PartialOrd for ChangePropertyRequest<'input>
source§fn partial_cmp(&self, other: &ChangePropertyRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &ChangePropertyRequest<'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 ChangePropertyRequest<'input>
impl<'input> Request for ChangePropertyRequest<'input>
source§impl<'input> Serialize for ChangePropertyRequest<'input>
impl<'input> Serialize for ChangePropertyRequest<'input>
impl<'input> Eq for ChangePropertyRequest<'input>
impl<'input> StructuralPartialEq for ChangePropertyRequest<'input>
impl<'input> VoidRequest for ChangePropertyRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ChangePropertyRequest<'input>
impl<'input> RefUnwindSafe for ChangePropertyRequest<'input>
impl<'input> Send for ChangePropertyRequest<'input>
impl<'input> Sync for ChangePropertyRequest<'input>
impl<'input> Unpin for ChangePropertyRequest<'input>
impl<'input> UnwindSafe for ChangePropertyRequest<'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