Struct x11rb_protocol::protocol::xproto::CreateGCRequest
source · pub struct CreateGCRequest<'input> {
pub cid: Gcontext,
pub drawable: Drawable,
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: Gcontext
§drawable: Drawable
§value_list: Cow<'input, CreateGCAux>
Implementations§
source§impl<'input> CreateGCRequest<'input>
impl<'input> CreateGCRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
pub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
Serialize this request into bytes for the provided connection
sourcepub fn into_owned(self) -> CreateGCRequest<'static>
pub fn into_owned(self) -> CreateGCRequest<'static>
Clone all borrowed data in this CreateGCRequest.
Trait Implementations§
source§impl<'input> Clone for CreateGCRequest<'input>
impl<'input> Clone for CreateGCRequest<'input>
source§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 moresource§impl Debug for CreateGCRequest<'_>
impl Debug for CreateGCRequest<'_>
source§impl<'input> Default for CreateGCRequest<'input>
impl<'input> Default for CreateGCRequest<'input>
source§fn default() -> CreateGCRequest<'input>
fn default() -> CreateGCRequest<'input>
Returns the “default value” for a type. Read more
source§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