pub struct AllocateBackBufferRequest {
pub window: u32,
pub buffer: u32,
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: u32§buffer: u32§swap_action: u8Implementations§
Trait Implementations§
Source§impl Clone for AllocateBackBufferRequest
impl Clone for AllocateBackBufferRequest
Source§fn clone(&self) -> AllocateBackBufferRequest
fn clone(&self) -> AllocateBackBufferRequest
Returns a duplicate 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 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 PartialOrd for AllocateBackBufferRequest
impl PartialOrd for AllocateBackBufferRequest
Source§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