Struct x11rb_protocol::protocol::dbe::AllocateBackBufferRequest
source · pub struct AllocateBackBufferRequest {
pub window: Window,
pub buffer: BackBuffer,
pub swap_action: u8,
}
Expand description
Allocates a back buffer.
Associates buffer
with the back buffer of window
. Multiple ids may be associated with the back buffer, which is created by the first allocate call and destroyed by the last deallocate.
§Fields
window
- The window to which to add the back buffer.buffer
- The buffer id to associate with the back buffer.swap_action
- The swap action most likely to be used to present this back buffer. This is only a hint, and does not preclude the use of other swap actions.
Fields§
§window: Window
§buffer: BackBuffer
§swap_action: u8
Implementations§
source§impl AllocateBackBufferRequest
impl AllocateBackBufferRequest
sourcepub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self, major_opcode: u8) -> 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 AllocateBackBufferRequest
impl Clone for AllocateBackBufferRequest
source§fn clone(&self) -> AllocateBackBufferRequest
fn clone(&self) -> AllocateBackBufferRequest
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 AllocateBackBufferRequest
impl Debug for AllocateBackBufferRequest
source§impl Default for AllocateBackBufferRequest
impl Default for AllocateBackBufferRequest
source§fn default() -> AllocateBackBufferRequest
fn default() -> AllocateBackBufferRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AllocateBackBufferRequest
impl<'de> Deserialize<'de> for AllocateBackBufferRequest
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 AllocateBackBufferRequest
impl Hash for AllocateBackBufferRequest
source§impl Ord for AllocateBackBufferRequest
impl Ord for AllocateBackBufferRequest
source§fn cmp(&self, other: &AllocateBackBufferRequest) -> Ordering
fn cmp(&self, other: &AllocateBackBufferRequest) -> 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 AllocateBackBufferRequest
impl PartialEq for AllocateBackBufferRequest
source§fn eq(&self, other: &AllocateBackBufferRequest) -> bool
fn eq(&self, other: &AllocateBackBufferRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for AllocateBackBufferRequest
impl PartialOrd for AllocateBackBufferRequest
source§fn partial_cmp(&self, other: &AllocateBackBufferRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &AllocateBackBufferRequest) -> 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 AllocateBackBufferRequest
impl Request for AllocateBackBufferRequest
impl Copy for AllocateBackBufferRequest
impl Eq for AllocateBackBufferRequest
impl StructuralPartialEq for AllocateBackBufferRequest
impl VoidRequest for AllocateBackBufferRequest
Auto Trait Implementations§
impl Freeze for AllocateBackBufferRequest
impl RefUnwindSafe for AllocateBackBufferRequest
impl Send for AllocateBackBufferRequest
impl Sync for AllocateBackBufferRequest
impl Unpin for AllocateBackBufferRequest
impl UnwindSafe for AllocateBackBufferRequest
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