Struct x11rb_async::protocol::dbe::DeallocateBackBufferRequest
source · pub struct DeallocateBackBufferRequest {
pub buffer: u32,
}Expand description
Deallocates a back buffer.
Deallocates the given buffer. If buffer is an invalid id, a BadBuffer error is returned. Because a window may have allocated multiple back buffer ids, the back buffer itself is not deleted until all these ids are deallocated by this call.
Fields
buffer- The back buffer to deallocate.
Fields§
§buffer: u32Implementations§
Trait Implementations§
source§impl Clone for DeallocateBackBufferRequest
impl Clone for DeallocateBackBufferRequest
source§fn clone(&self) -> DeallocateBackBufferRequest
fn clone(&self) -> DeallocateBackBufferRequest
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 DeallocateBackBufferRequest
impl Debug for DeallocateBackBufferRequest
source§impl Default for DeallocateBackBufferRequest
impl Default for DeallocateBackBufferRequest
source§fn default() -> DeallocateBackBufferRequest
fn default() -> DeallocateBackBufferRequest
Returns the “default value” for a type. Read more
source§impl Hash for DeallocateBackBufferRequest
impl Hash for DeallocateBackBufferRequest
source§impl Ord for DeallocateBackBufferRequest
impl Ord for DeallocateBackBufferRequest
source§fn cmp(&self, other: &DeallocateBackBufferRequest) -> Ordering
fn cmp(&self, other: &DeallocateBackBufferRequest) -> 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 DeallocateBackBufferRequest
impl PartialEq for DeallocateBackBufferRequest
source§fn eq(&self, other: &DeallocateBackBufferRequest) -> bool
fn eq(&self, other: &DeallocateBackBufferRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for DeallocateBackBufferRequest
impl PartialOrd for DeallocateBackBufferRequest
source§fn partial_cmp(&self, other: &DeallocateBackBufferRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &DeallocateBackBufferRequest) -> 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 moreimpl Copy for DeallocateBackBufferRequest
impl Eq for DeallocateBackBufferRequest
impl StructuralEq for DeallocateBackBufferRequest
impl StructuralPartialEq for DeallocateBackBufferRequest
impl VoidRequest for DeallocateBackBufferRequest
Auto Trait Implementations§
impl RefUnwindSafe for DeallocateBackBufferRequest
impl Send for DeallocateBackBufferRequest
impl Sync for DeallocateBackBufferRequest
impl Unpin for DeallocateBackBufferRequest
impl UnwindSafe for DeallocateBackBufferRequest
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