pub struct UnredirectSubwindowsRequest {
pub window: u32,
pub update: Redirect,
}Expand description
Terminate redirection of the specified window’s children.
Redirection of all children of window will be terminated.
Fields
window- The window to terminate redirection of. Must have previously been selected for sub-redirection by the current client, or a Value error results.update- The update type passed to RedirectSubWindows. If this does not match the previously requested update type, a Value error results.
Fields§
§window: u32§update: RedirectImplementations§
Trait Implementations§
source§impl Clone for UnredirectSubwindowsRequest
impl Clone for UnredirectSubwindowsRequest
source§fn clone(&self) -> UnredirectSubwindowsRequest
fn clone(&self) -> UnredirectSubwindowsRequest
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 moresource§impl Debug for UnredirectSubwindowsRequest
impl Debug for UnredirectSubwindowsRequest
source§impl Default for UnredirectSubwindowsRequest
impl Default for UnredirectSubwindowsRequest
source§fn default() -> UnredirectSubwindowsRequest
fn default() -> UnredirectSubwindowsRequest
Returns the “default value” for a type. Read more
source§impl Hash for UnredirectSubwindowsRequest
impl Hash for UnredirectSubwindowsRequest
source§impl Ord for UnredirectSubwindowsRequest
impl Ord for UnredirectSubwindowsRequest
source§fn cmp(&self, other: &UnredirectSubwindowsRequest) -> Ordering
fn cmp(&self, other: &UnredirectSubwindowsRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for UnredirectSubwindowsRequest
impl PartialEq for UnredirectSubwindowsRequest
source§fn eq(&self, other: &UnredirectSubwindowsRequest) -> bool
fn eq(&self, other: &UnredirectSubwindowsRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for UnredirectSubwindowsRequest
impl PartialOrd for UnredirectSubwindowsRequest
source§fn partial_cmp(&self, other: &UnredirectSubwindowsRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &UnredirectSubwindowsRequest) -> Option<Ordering>
1.0.0 · source§fn 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 moreimpl Copy for UnredirectSubwindowsRequest
impl Eq for UnredirectSubwindowsRequest
impl StructuralEq for UnredirectSubwindowsRequest
impl StructuralPartialEq for UnredirectSubwindowsRequest
impl VoidRequest for UnredirectSubwindowsRequest
Auto Trait Implementations§
impl RefUnwindSafe for UnredirectSubwindowsRequest
impl Send for UnredirectSubwindowsRequest
impl Sync for UnredirectSubwindowsRequest
impl Unpin for UnredirectSubwindowsRequest
impl UnwindSafe for UnredirectSubwindowsRequest
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