pub struct SetAttributes<'a> {
pub drawable: Drawable,
pub x: i16,
pub y: i16,
pub width: u16,
pub height: u16,
pub border_width: u16,
pub class: WindowClass,
pub depth: u8,
pub visual: Visualid,
pub value_list: &'a [Cw],
}Expand description
The SetAttributes request.
This request has no reply.
Associated cookie types are VoidCookie and VoidCookieChecked.
Fields§
§drawable: Drawable§x: i16§y: i16§width: u16§height: u16§border_width: u16§class: WindowClass§depth: u8§visual: Visualid§value_list: &'a [Cw]Trait Implementations§
Source§impl<'a> Clone for SetAttributes<'a>
impl<'a> Clone for SetAttributes<'a>
Source§fn clone(&self) -> SetAttributes<'a>
fn clone(&self) -> SetAttributes<'a>
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<'a> Debug for SetAttributes<'a>
impl<'a> Debug for SetAttributes<'a>
Source§impl<'a> RawRequest for SetAttributes<'a>
impl<'a> RawRequest for SetAttributes<'a>
Source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
Actual implementation of the request sending Read more
Source§impl<'a> Request for SetAttributes<'a>
impl<'a> Request for SetAttributes<'a>
impl<'a> RequestWithoutReply for SetAttributes<'a>
Auto Trait Implementations§
impl<'a> Freeze for SetAttributes<'a>
impl<'a> RefUnwindSafe for SetAttributes<'a>
impl<'a> Send for SetAttributes<'a>
impl<'a> Sync for SetAttributes<'a>
impl<'a> Unpin for SetAttributes<'a>
impl<'a> UnwindSafe for SetAttributes<'a>
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