pub struct ChangeWindowAttributesRequest<'input> {
pub window: Window,
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: Window
value_list: Cow<'input, ChangeWindowAttributesAux>
Implementations
sourceimpl<'input> ChangeWindowAttributesRequest<'input>
impl<'input> ChangeWindowAttributesRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'input>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'input>>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &'input [u8]
) -> Result<Self, ParseError>
pub fn try_parse_request(
header: RequestHeader,
value: &'input [u8]
) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
sourcepub fn into_owned(self) -> ChangeWindowAttributesRequest<'static>
pub fn into_owned(self) -> ChangeWindowAttributesRequest<'static>
Clone all borrowed data in this ChangeWindowAttributesRequest.
Trait Implementations
sourceimpl<'input> Clone for ChangeWindowAttributesRequest<'input>
impl<'input> Clone for ChangeWindowAttributesRequest<'input>
sourcefn clone(&self) -> ChangeWindowAttributesRequest<'input>
fn clone(&self) -> ChangeWindowAttributesRequest<'input>
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<'input> Debug for ChangeWindowAttributesRequest<'input>
impl<'input> Debug for ChangeWindowAttributesRequest<'input>
sourceimpl<'input> Default for ChangeWindowAttributesRequest<'input>
impl<'input> Default for ChangeWindowAttributesRequest<'input>
sourcefn default() -> ChangeWindowAttributesRequest<'input>
fn default() -> ChangeWindowAttributesRequest<'input>
Returns the “default value” for a type. Read more
sourceimpl<'input> Hash for ChangeWindowAttributesRequest<'input>
impl<'input> Hash for ChangeWindowAttributesRequest<'input>
sourceimpl<'input> Ord for ChangeWindowAttributesRequest<'input>
impl<'input> Ord for ChangeWindowAttributesRequest<'input>
sourceimpl<'input> PartialEq<ChangeWindowAttributesRequest<'input>> for ChangeWindowAttributesRequest<'input>
impl<'input> PartialEq<ChangeWindowAttributesRequest<'input>> for ChangeWindowAttributesRequest<'input>
sourcefn eq(&self, other: &ChangeWindowAttributesRequest<'input>) -> bool
fn eq(&self, other: &ChangeWindowAttributesRequest<'input>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ChangeWindowAttributesRequest<'input>) -> bool
fn ne(&self, other: &ChangeWindowAttributesRequest<'input>) -> bool
This method tests for !=
.
sourceimpl<'input> PartialOrd<ChangeWindowAttributesRequest<'input>> for ChangeWindowAttributesRequest<'input>
impl<'input> PartialOrd<ChangeWindowAttributesRequest<'input>> for ChangeWindowAttributesRequest<'input>
sourcefn partial_cmp(
&self,
other: &ChangeWindowAttributesRequest<'input>
) -> Option<Ordering>
fn partial_cmp(
&self,
other: &ChangeWindowAttributesRequest<'input>
) -> 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<'input> Request for ChangeWindowAttributesRequest<'input>
impl<'input> Request for ChangeWindowAttributesRequest<'input>
impl<'input> Eq for ChangeWindowAttributesRequest<'input>
impl<'input> StructuralEq for ChangeWindowAttributesRequest<'input>
impl<'input> StructuralPartialEq for ChangeWindowAttributesRequest<'input>
impl<'input> VoidRequest for ChangeWindowAttributesRequest<'input>
Auto Trait Implementations
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
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