Struct GetWindowAttributesReply
pub struct GetWindowAttributesReply {Show 17 fields
pub backing_store: BackingStore,
pub sequence: u16,
pub length: u32,
pub visual: u32,
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: u32,
pub all_event_masks: EventMask,
pub your_event_mask: EventMask,
pub do_not_propagate_mask: EventMask,
}
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: u32
§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: u32
§all_event_masks: EventMask
§your_event_mask: EventMask
§do_not_propagate_mask: EventMask
Trait Implementations§
§impl Clone for GetWindowAttributesReply
impl Clone for GetWindowAttributesReply
§fn clone(&self) -> GetWindowAttributesReply
fn clone(&self) -> GetWindowAttributesReply
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for GetWindowAttributesReply
impl Debug for GetWindowAttributesReply
§impl Default for GetWindowAttributesReply
impl Default for GetWindowAttributesReply
§fn default() -> GetWindowAttributesReply
fn default() -> GetWindowAttributesReply
Returns the “default value” for a type. Read more
§impl From<GetWindowAttributesReply> for Reply
impl From<GetWindowAttributesReply> for Reply
§fn from(reply: GetWindowAttributesReply) -> Reply
fn from(reply: GetWindowAttributesReply) -> Reply
Converts to this type from the input type.
§impl Serialize for GetWindowAttributesReply
impl Serialize for GetWindowAttributesReply
§impl TryParse for GetWindowAttributesReply
impl TryParse for GetWindowAttributesReply
§fn try_parse(
initial_value: &[u8],
) -> Result<(GetWindowAttributesReply, &[u8]), ParseError>
fn try_parse( initial_value: &[u8], ) -> Result<(GetWindowAttributesReply, &[u8]), ParseError>
Try to parse the given values into an instance of this type. Read more
impl Copy for GetWindowAttributesReply
Auto Trait Implementations§
impl Freeze for GetWindowAttributesReply
impl RefUnwindSafe for GetWindowAttributesReply
impl Send for GetWindowAttributesReply
impl Sync for GetWindowAttributesReply
impl Unpin for GetWindowAttributesReply
impl UnwindSafe for GetWindowAttributesReply
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<OwnedFd>,
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd>, ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more