Struct xcb::ffi::xproto::xcb_get_property_reply_t[][src]

#[repr(C)]pub struct xcb_get_property_reply_t {
    pub response_type: u8,
    pub format: u8,
    pub sequence: u16,
    pub length: u32,
    pub type_: xcb_atom_t,
    pub bytes_after: u32,
    pub value_len: u32,
    pub pad0: [u8; 12],
}

Fields

response_type: u8format: u8

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.

sequence: u16length: u32type_: xcb_atom_t

The actual type of the property (an atom).

bytes_after: u32

The number of bytes remaining to be read in the property if a partial read was performed.

value_len: u32

The length of value. You should use the corresponding accessor instead of this field.

pad0: [u8; 12]

Auto Trait Implementations

impl RefUnwindSafe for xcb_get_property_reply_t

impl Send for xcb_get_property_reply_t

impl Sync for xcb_get_property_reply_t

impl Unpin for xcb_get_property_reply_t

impl UnwindSafe for xcb_get_property_reply_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.