pub struct CreatePixmapRequest {
pub pid: Pixmap,
pub drawable: Drawable,
pub width: u16,
pub height: u16,
pub depth: u8,
pub shmseg: Seg,
pub offset: u32,
}
Expand description
Create a pixmap backed by shared memory..
Create a pixmap backed by shared memory. Writes to the shared memory will be reflected in the contents of the pixmap, and writes to the pixmap will be reflected in the contents of the shared memory.
§Fields
pid
- A pixmap ID created with xcb_generate_id().drawable
- The drawable to create the pixmap in.width
- The width of the pixmap to create. Must be nonzero, or a Value error results.height
- The height of the pixmap to create. Must be nonzero, or a Value error results.depth
- The depth of the pixmap to create. Must be nonzero, or a Value error results.shmseg
- The shared memory segment to use to create the pixmap.offset
- The offset in the segment to create the pixmap at.
Fields§
§pid: Pixmap
§drawable: Drawable
§width: u16
§height: u16
§depth: u8
§shmseg: Seg
§offset: u32
Implementations§
Trait Implementations§
source§impl Clone for CreatePixmapRequest
impl Clone for CreatePixmapRequest
source§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 moresource§impl Debug for CreatePixmapRequest
impl Debug for CreatePixmapRequest
source§impl Default for CreatePixmapRequest
impl Default for CreatePixmapRequest
source§fn default() -> CreatePixmapRequest
fn default() -> CreatePixmapRequest
Returns the “default value” for a type. Read more
source§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
)