Struct x11rb_protocol::protocol::xproto::CreatePixmapRequest
source · pub struct CreatePixmapRequest {
pub depth: u8,
pub pid: Pixmap,
pub drawable: Drawable,
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: Pixmap
§drawable: Drawable
§width: u16
§height: u16
Implementations§
source§impl CreatePixmapRequest
impl CreatePixmapRequest
sourcepub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &[u8] ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
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<'de> Deserialize<'de> for CreatePixmapRequest
impl<'de> Deserialize<'de> for CreatePixmapRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for CreatePixmapRequest
impl Hash for CreatePixmapRequest
source§impl Ord for CreatePixmapRequest
impl Ord for CreatePixmapRequest
source§fn cmp(&self, other: &CreatePixmapRequest) -> Ordering
fn cmp(&self, other: &CreatePixmapRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for CreatePixmapRequest
impl PartialEq for CreatePixmapRequest
source§fn eq(&self, other: &CreatePixmapRequest) -> bool
fn eq(&self, other: &CreatePixmapRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for CreatePixmapRequest
impl PartialOrd for CreatePixmapRequest
source§fn partial_cmp(&self, other: &CreatePixmapRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &CreatePixmapRequest) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Request for CreatePixmapRequest
impl Request for CreatePixmapRequest
source§impl Serialize for CreatePixmapRequest
impl Serialize for CreatePixmapRequest
impl Copy for CreatePixmapRequest
impl Eq for CreatePixmapRequest
impl StructuralPartialEq 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