Struct ChangeWindowAttributesRequest
pub struct ChangeWindowAttributesRequest<'input> {
pub window: u32,
pub value_list: Cow<'input, ChangeWindowAttributesAux>,
}
Expand description
change window attributes.
Changes the attributes specified by value_mask
for the specified window
.
§Fields
window
- The window to change.value_list
- Values for each of the attributes specified in the bitmaskvalue_mask
. The order has to correspond to the order of possiblevalue_mask
bits. See the example.
§Errors
Access
- TODO: reasons?Colormap
- TODO: reasons?Cursor
- TODO: reasons?Match
- TODO: reasons?Pixmap
- TODO: reasons?Value
- TODO: reasons?Window
- The specifiedwindow
does not exist.
Fields§
§window: u32
§value_list: Cow<'input, ChangeWindowAttributesAux>
Implementations§
§impl<'input> ChangeWindowAttributesRequest<'input>
impl<'input> ChangeWindowAttributesRequest<'input>
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
Serialize this request into bytes for the provided connection
pub fn into_owned(self) -> ChangeWindowAttributesRequest<'static>
pub fn into_owned(self) -> ChangeWindowAttributesRequest<'static>
Clone all borrowed data in this ChangeWindowAttributesRequest.
Trait Implementations§
§impl<'input> Clone for ChangeWindowAttributesRequest<'input>
impl<'input> Clone for ChangeWindowAttributesRequest<'input>
§fn clone(&self) -> ChangeWindowAttributesRequest<'input>
fn clone(&self) -> ChangeWindowAttributesRequest<'input>
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 ChangeWindowAttributesRequest<'_>
impl Debug for ChangeWindowAttributesRequest<'_>
§impl<'input> Default for ChangeWindowAttributesRequest<'input>
impl<'input> Default for ChangeWindowAttributesRequest<'input>
§fn default() -> ChangeWindowAttributesRequest<'input>
fn default() -> ChangeWindowAttributesRequest<'input>
Returns the “default value” for a type. Read more
§impl<'input> Request for ChangeWindowAttributesRequest<'input>
impl<'input> Request for ChangeWindowAttributesRequest<'input>
impl<'input> VoidRequest for ChangeWindowAttributesRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ChangeWindowAttributesRequest<'input>
impl<'input> RefUnwindSafe for ChangeWindowAttributesRequest<'input>
impl<'input> Send for ChangeWindowAttributesRequest<'input>
impl<'input> Sync for ChangeWindowAttributesRequest<'input>
impl<'input> Unpin for ChangeWindowAttributesRequest<'input>
impl<'input> UnwindSafe for ChangeWindowAttributesRequest<'input>
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
)