x11rb_protocol::protocol::shm

Struct GetImageRequest

source
pub struct GetImageRequest {
    pub drawable: Drawable,
    pub x: i16,
    pub y: i16,
    pub width: u16,
    pub height: u16,
    pub plane_mask: u32,
    pub format: u8,
    pub shmseg: Seg,
    pub offset: u32,
}
Expand description

Copies data from the specified drawable to the shared memory segment..

Copy data from the specified drawable to the shared memory segment. The amount of bytes written to the destination image is always equal to the number of bytes read from the shared memory segment.

§Fields

  • drawable - The drawable to copy the image out of.
  • x - The X coordinate in the drawable to begin copying at.
  • y - The Y coordinate in the drawable to begin copying at.
  • width - The width of the image to copy.
  • height - The height of the image to copy.
  • plane_mask - A mask that determines which planes are used.
  • format - The format to use for the copy (???).
  • shmseg - The destination shared memory segment.
  • offset - The offset in the shared memory segment to copy data to.

Fields§

§drawable: Drawable§x: i16§y: i16§width: u16§height: u16§plane_mask: u32§format: u8§shmseg: Seg§offset: u32

Implementations§

source§

impl GetImageRequest

source

pub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'static, [u8]>; 1]>

Serialize this request into bytes for the provided connection

Trait Implementations§

source§

impl Clone for GetImageRequest

source§

fn clone(&self) -> GetImageRequest

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GetImageRequest

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GetImageRequest

source§

fn default() -> GetImageRequest

Returns the “default value” for a type. Read more
source§

impl ReplyRequest for GetImageRequest

source§

type Reply = GetImageReply

The kind of reply that this request generates.
source§

impl Request for GetImageRequest

source§

const EXTENSION_NAME: Option<&'static str> = _

The protocol name of the extension that this request belongs to, or None for core requests
source§

fn serialize(self, major_opcode: u8) -> BufWithFds<Vec<u8>>

Serialize this request into its X11 protocol wire representation. Read more
source§

impl Copy for GetImageRequest

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.