Struct breadx::display::WindowAttributes[][src]

pub struct WindowAttributes {
    pub backing_store: BackingStore,
    pub visual: Visualid,
    pub class: WindowClass,
    pub bit_gravity: Gravity,
    pub win_gravity: Gravity,
    pub backing_planes: u32,
    pub backing_pixel: u32,
    pub save_under: bool,
    pub map_is_installed: bool,
    pub map_state: MapState,
    pub override_redirect: bool,
    pub colormap: Colormap,
    pub all_event_masks: EventMask,
    pub your_event_mask: EventMask,
    pub do_not_propagate_mask: EventMask,
}

The return type of Window::window_attributes_immediate.

Fields

backing_store: BackingStorevisual: Visualidclass: WindowClassbit_gravity: Gravitywin_gravity: Gravitybacking_planes: u32backing_pixel: u32save_under: boolmap_is_installed: boolmap_state: MapStateoverride_redirect: boolcolormap: Colormapall_event_masks: EventMaskyour_event_mask: EventMaskdo_not_propagate_mask: EventMask

Trait Implementations

impl Clone for WindowAttributes[src]

impl Copy for WindowAttributes[src]

impl Debug for WindowAttributes[src]

impl Default for WindowAttributes[src]

impl Eq for WindowAttributes[src]

impl From<GetWindowAttributesReply> for WindowAttributes[src]

impl PartialEq<WindowAttributes> for WindowAttributes[src]

impl StructuralEq for WindowAttributes[src]

impl StructuralPartialEq for WindowAttributes[src]

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.