Struct breadx::auto::xproto::CreateWindowRequest[][src]

pub struct CreateWindowRequest {
    pub req_type: u8,
    pub depth: u8,
    pub length: u16,
    pub wid: Window,
    pub parent: Window,
    pub x: i16,
    pub y: i16,
    pub width: u16,
    pub height: u16,
    pub border_width: u16,
    pub class: WindowClass,
    pub visual: Visualid,
    pub value_mask: Cw,
    pub background_pixmap: Pixmap,
    pub background_pixel: u32,
    pub border_pixmap: Pixmap,
    pub border_pixel: u32,
    pub bit_gravity: Gravity,
    pub win_gravity: Gravity,
    pub backing_store: BackingStore,
    pub backing_planes: u32,
    pub backing_pixel: u32,
    pub override_redirect: Bool32,
    pub save_under: Bool32,
    pub event_mask: EventMask,
    pub do_not_propogate_mask: EventMask,
    pub colormap: Colormap,
    pub cursor: Cursor,
}

Fields

req_type: u8depth: u8length: u16wid: Windowparent: Windowx: i16y: i16width: u16height: u16border_width: u16class: WindowClassvisual: Visualidvalue_mask: Cwbackground_pixmap: Pixmapbackground_pixel: u32border_pixmap: Pixmapborder_pixel: u32bit_gravity: Gravitywin_gravity: Gravitybacking_store: BackingStorebacking_planes: u32backing_pixel: u32override_redirect: Bool32save_under: Bool32event_mask: EventMaskdo_not_propogate_mask: EventMaskcolormap: Colormapcursor: Cursor

Trait Implementations

impl AsByteSequence for CreateWindowRequest[src]

impl Clone for CreateWindowRequest[src]

impl Debug for CreateWindowRequest[src]

impl Default for CreateWindowRequest[src]

impl Request for CreateWindowRequest[src]

type Reply = ()

Auto Trait Implementations

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.