Struct xcb::x::GetProperty

source ·
pub struct GetProperty {
    pub delete: bool,
    pub window: Window,
    pub property: Atom,
    pub type: Atom,
    pub long_offset: u32,
    pub long_length: u32,
}
Expand description

Gets a window property

Gets the specified property from 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.

TODO: talk about type

TODO: talk about delete

TODO: talk about the offset/length thing. what’s a valid use case?

§Example

// Get the WM_NAME property of the window
let cookie = conn.send_request(&x::GetProperty {
    delete: false,
    window,
    property: x::ATOM_WM_NAME,
    r#type: x::ATOM_STRING,
    long_offset: 0,
    long_length: 0,
});
let reply = conn.wait_for_reply(cookie)?;
// value() returns &[u8]
let title = str::from_utf8(reply.value()).expect("The WM_NAME property is not valid UTF-8");

This request replies GetPropertyReply.

Associated cookie types are GetPropertyCookie and GetPropertyCookieUnchecked.

Fields§

§delete: bool

Whether the property should actually be deleted. For deleting a property, the specified type has to match the actual property type.

§window: Window

The window whose property you want to get.

§property: Atom

The property you want to get (an atom).

§type: Atom

The type of the property you want to get (an atom).

§long_offset: u32

Specifies the offset (in 32-bit multiples) in the specified property where the data is to be retrieved.

§long_length: u32

Specifies how many 32-bit multiples of data should be retrieved (e.g. if you set long_length to 4, you will receive 16 bytes of data).

Trait Implementations§

source§

impl Clone for GetProperty

source§

fn clone(&self) -> GetProperty

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GetProperty

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl RawRequest for GetProperty

source§

fn raw_request(&self, c: &Connection, checked: bool) -> u64

Actual implementation of the request sending Read more
source§

impl Request for GetProperty

§

type Cookie = GetPropertyCookie

The default cookie associated to this request.
source§

const IS_VOID: bool = false

false if the request returns a reply, true otherwise.
source§

impl RequestWithReply for GetProperty

§

type Reply = GetPropertyReply

Reply associated with the request
§

type Cookie = GetPropertyCookie

Default cookie type for the request, as returned by Connection::send_request.
§

type CookieUnchecked = GetPropertyCookieUnchecked

Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.