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

#[repr(C)]pub struct xcb_change_save_set_request_t {
    pub major_opcode: u8,
    pub mode: u8,
    pub length: u16,
    pub window: xcb_window_t,
}

Changes a client’s save set

TODO: explain what the save set is for.

This function either adds or removes the specified window to the client’s (your application’s) save set.

Fields

major_opcode: u8mode: u8

Insert to add the specified window to the save set or Delete to delete it from the save set.

length: u16window: xcb_window_t

The window to add or delete to/from your save set.

Trait Implementations

impl Clone for xcb_change_save_set_request_t[src]

impl Copy for xcb_change_save_set_request_t[src]

Auto Trait Implementations

impl RefUnwindSafe for xcb_change_save_set_request_t

impl Send for xcb_change_save_set_request_t

impl Sync for xcb_change_save_set_request_t

impl Unpin for xcb_change_save_set_request_t

impl UnwindSafe for xcb_change_save_set_request_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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.