Struct CreatePixmapRequest
pub struct CreatePixmapRequest {
pub depth: u8,
pub pid: u32,
pub drawable: u32,
pub width: u16,
pub height: u16,
}
Expand description
Creates a pixmap.
Creates a pixmap. The pixmap can only be used on the same screen as drawable
is on and only with drawables of the same depth
.
§Fields
depth
- TODOpid
- The ID with which you will refer to the new pixmap, created byxcb_generate_id
.drawable
- Drawable to get the screen from.width
- The width of the new pixmap.height
- The height of the new pixmap.
§Errors
Value
- TODO: reasons?Drawable
- The specifieddrawable
(Window or Pixmap) does not exist.Alloc
- The X server could not allocate the requested resources (no memory?).
§See
xcb_generate_id
: function
Fields§
§depth: u8
§pid: u32
§drawable: u32
§width: u16
§height: u16
Implementations§
Trait Implementations§
§impl Clone for CreatePixmapRequest
impl Clone for CreatePixmapRequest
§fn clone(&self) -> CreatePixmapRequest
fn clone(&self) -> CreatePixmapRequest
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 CreatePixmapRequest
impl Debug for CreatePixmapRequest
§impl Default for CreatePixmapRequest
impl Default for CreatePixmapRequest
§fn default() -> CreatePixmapRequest
fn default() -> CreatePixmapRequest
Returns the “default value” for a type. Read more
§impl Request for CreatePixmapRequest
impl Request for CreatePixmapRequest
impl Copy for CreatePixmapRequest
impl VoidRequest for CreatePixmapRequest
Auto Trait Implementations§
impl Freeze for CreatePixmapRequest
impl RefUnwindSafe for CreatePixmapRequest
impl Send for CreatePixmapRequest
impl Sync for CreatePixmapRequest
impl Unpin for CreatePixmapRequest
impl UnwindSafe for CreatePixmapRequest
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
)