Struct x11rb_protocol::protocol::xproto::GetWindowAttributesReply
source · [−]pub struct GetWindowAttributesReply {Show 17 fields
pub backing_store: BackingStore,
pub sequence: u16,
pub length: u32,
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: u32,
pub your_event_mask: u32,
pub do_not_propagate_mask: u16,
}
Expand description
Fields
override_redirect
- Window managers should ignore this window ifoverride_redirect
is 1.visual
- The associated visual structure ofwindow
.backing_planes
- Planes to be preserved if possible.backing_pixel
- Value to be used when restoring planes.save_under
- Boolean, should bits under be saved?colormap
- Color map to be associated with window.all_event_masks
- Set of events all people have interest in.your_event_mask
- My event mask.do_not_propagate_mask
- Set of events that should not propagate.backing_store
-class
-bit_gravity
-win_gravity
-map_state
-
Fields
backing_store: BackingStore
sequence: u16
length: u32
visual: Visualid
class: WindowClass
bit_gravity: Gravity
win_gravity: Gravity
backing_planes: u32
backing_pixel: u32
save_under: bool
map_is_installed: bool
map_state: MapState
override_redirect: bool
colormap: Colormap
all_event_masks: u32
your_event_mask: u32
do_not_propagate_mask: u16
Trait Implementations
sourceimpl Clone for GetWindowAttributesReply
impl Clone for GetWindowAttributesReply
sourcefn clone(&self) -> GetWindowAttributesReply
fn clone(&self) -> GetWindowAttributesReply
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetWindowAttributesReply
impl Debug for GetWindowAttributesReply
sourceimpl Default for GetWindowAttributesReply
impl Default for GetWindowAttributesReply
sourcefn default() -> GetWindowAttributesReply
fn default() -> GetWindowAttributesReply
Returns the “default value” for a type. Read more
sourceimpl From<GetWindowAttributesReply> for Reply
impl From<GetWindowAttributesReply> for Reply
sourcefn from(reply: GetWindowAttributesReply) -> Reply
fn from(reply: GetWindowAttributesReply) -> Reply
Converts to this type from the input type.
sourceimpl Hash for GetWindowAttributesReply
impl Hash for GetWindowAttributesReply
sourceimpl Ord for GetWindowAttributesReply
impl Ord for GetWindowAttributesReply
sourceimpl PartialEq<GetWindowAttributesReply> for GetWindowAttributesReply
impl PartialEq<GetWindowAttributesReply> for GetWindowAttributesReply
sourcefn eq(&self, other: &GetWindowAttributesReply) -> bool
fn eq(&self, other: &GetWindowAttributesReply) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetWindowAttributesReply) -> bool
fn ne(&self, other: &GetWindowAttributesReply) -> bool
This method tests for !=
.
sourceimpl PartialOrd<GetWindowAttributesReply> for GetWindowAttributesReply
impl PartialOrd<GetWindowAttributesReply> for GetWindowAttributesReply
sourcefn partial_cmp(&self, other: &GetWindowAttributesReply) -> Option<Ordering>
fn partial_cmp(&self, other: &GetWindowAttributesReply) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl TryParse for GetWindowAttributesReply
impl TryParse for GetWindowAttributesReply
impl Copy for GetWindowAttributesReply
impl Eq for GetWindowAttributesReply
impl StructuralEq for GetWindowAttributesReply
impl StructuralPartialEq for GetWindowAttributesReply
Auto Trait Implementations
impl RefUnwindSafe for GetWindowAttributesReply
impl Send for GetWindowAttributesReply
impl Sync for GetWindowAttributesReply
impl Unpin for GetWindowAttributesReply
impl UnwindSafe for GetWindowAttributesReply
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more