#[repr(C)]
pub union gbm_bo_handle {
pub ptr: *mut c_void,
pub s32: i32,
pub u32: u32,
pub s64: i64,
pub u64: u64,
_bindgen_union_align: u64,
}
Fields§
§ptr: *mut c_void
§s32: i32
§u32: u32
§s64: i64
§u64: u64
§_bindgen_union_align: u64
Trait Implementations§
source§impl Clone for gbm_bo_handle
impl Clone for gbm_bo_handle
source§fn clone(&self) -> gbm_bo_handle
fn clone(&self) -> gbm_bo_handle
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 moreimpl Copy for gbm_bo_handle
Auto Trait Implementations§
impl RefUnwindSafe for gbm_bo_handle
impl !Send for gbm_bo_handle
impl !Sync for gbm_bo_handle
impl Unpin for gbm_bo_handle
impl UnwindSafe for gbm_bo_handle
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