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
sourceimpl<'input> ChangePropertyRequest<'input>
impl<'input> ChangePropertyRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'input>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'input>>
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
sourceimpl<'input> Clone for ChangePropertyRequest<'input>
impl<'input> Clone for ChangePropertyRequest<'input>
sourcefn clone(&self) -> ChangePropertyRequest<'input>
fn clone(&self) -> ChangePropertyRequest<'input>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'input> Debug for ChangePropertyRequest<'input>
impl<'input> Debug for ChangePropertyRequest<'input>
sourceimpl<'input> Default for ChangePropertyRequest<'input>
impl<'input> Default for ChangePropertyRequest<'input>
sourcefn default() -> ChangePropertyRequest<'input>
fn default() -> ChangePropertyRequest<'input>
Returns the “default value” for a type. Read more
sourceimpl<'input> Hash for ChangePropertyRequest<'input>
impl<'input> Hash for ChangePropertyRequest<'input>
sourceimpl<'input> Ord for ChangePropertyRequest<'input>
impl<'input> Ord for ChangePropertyRequest<'input>
sourceimpl<'input> PartialEq<ChangePropertyRequest<'input>> for ChangePropertyRequest<'input>
impl<'input> PartialEq<ChangePropertyRequest<'input>> for ChangePropertyRequest<'input>
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ChangePropertyRequest<'input>) -> bool
fn ne(&self, other: &ChangePropertyRequest<'input>) -> bool
This method tests for !=
.
sourceimpl<'input> PartialOrd<ChangePropertyRequest<'input>> for ChangePropertyRequest<'input>
impl<'input> PartialOrd<ChangePropertyRequest<'input>> for ChangePropertyRequest<'input>
sourcefn partial_cmp(&self, other: &ChangePropertyRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &ChangePropertyRequest<'input>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl<'input> Request for ChangePropertyRequest<'input>
impl<'input> Request for ChangePropertyRequest<'input>
impl<'input> Eq for ChangePropertyRequest<'input>
impl<'input> StructuralEq for ChangePropertyRequest<'input>
impl<'input> StructuralPartialEq for ChangePropertyRequest<'input>
impl<'input> VoidRequest for ChangePropertyRequest<'input>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more