[−][src]Struct xcb::ffi::xproto::xcb_get_property_request_t   
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?
Fields
major_opcode: u8delete: u8Whether the property should actually be deleted. For deleting a property, the
specified type has to match the actual property type.
length: u16window: xcb_window_tThe window whose property you want to get.
property: xcb_atom_tThe property you want to get (an atom).
type_: xcb_atom_tThe type of the property you want to get (an atom).
long_offset: u32Specifies the offset (in 32-bit multiples) in the specified property where the data is to be retrieved.
long_length: u32Specifies 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
impl Copy for xcb_get_property_request_t[src]
impl Clone for xcb_get_property_request_t[src]
fn clone(&self) -> xcb_get_property_request_t[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Unpin for xcb_get_property_request_t
impl Sync for xcb_get_property_request_t
impl Send for xcb_get_property_request_t
impl UnwindSafe for xcb_get_property_request_t
impl RefUnwindSafe for xcb_get_property_request_t
Blanket Implementations
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,