Struct CreateGCRequest
pub struct CreateGCRequest<'input> {
pub cid: u32,
pub drawable: u32,
pub value_list: Cow<'input, CreateGCAux>,
}
Expand description
Creates a graphics context.
Creates a graphics context. The graphics context can be used with any drawable that has the same root and depth as the specified drawable.
§Fields
cid
- The ID with which you will refer to the graphics context, created byxcb_generate_id
.drawable
- Drawable to get the root/depth from.
§Errors
Drawable
- The specifieddrawable
(Window or Pixmap) does not exist.Match
- TODO: reasons?Font
- TODO: reasons?Pixmap
- TODO: reasons?Value
- TODO: reasons?Alloc
- The X server could not allocate the requested resources (no memory?).
§See
xcb_generate_id
: function
Fields§
§cid: u32
§drawable: u32
§value_list: Cow<'input, CreateGCAux>
Implementations§
§impl<'input> CreateGCRequest<'input>
impl<'input> CreateGCRequest<'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) -> CreateGCRequest<'static>
pub fn into_owned(self) -> CreateGCRequest<'static>
Clone all borrowed data in this CreateGCRequest.
Trait Implementations§
§impl<'input> Clone for CreateGCRequest<'input>
impl<'input> Clone for CreateGCRequest<'input>
§fn clone(&self) -> CreateGCRequest<'input>
fn clone(&self) -> CreateGCRequest<'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 CreateGCRequest<'_>
impl Debug for CreateGCRequest<'_>
§impl<'input> Default for CreateGCRequest<'input>
impl<'input> Default for CreateGCRequest<'input>
§fn default() -> CreateGCRequest<'input>
fn default() -> CreateGCRequest<'input>
Returns the “default value” for a type. Read more
§impl<'input> Request for CreateGCRequest<'input>
impl<'input> Request for CreateGCRequest<'input>
impl<'input> VoidRequest for CreateGCRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for CreateGCRequest<'input>
impl<'input> RefUnwindSafe for CreateGCRequest<'input>
impl<'input> Send for CreateGCRequest<'input>
impl<'input> Sync for CreateGCRequest<'input>
impl<'input> Unpin for CreateGCRequest<'input>
impl<'input> UnwindSafe for CreateGCRequest<'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
)