#[repr(C)]pub struct GlVoidPtrMut {
pub ptr: *mut GLvoid,
}Expand description
Struct returned from the C API
Because of Python, every object has to be clone-able, so yes there may exist more than one mutable reference
Fields§
§ptr: *mut GLvoidTrait Implementations§
Source§impl Clone for GlVoidPtrMut
impl Clone for GlVoidPtrMut
Auto Trait Implementations§
impl !Send for GlVoidPtrMut
impl !Sync for GlVoidPtrMut
impl Freeze for GlVoidPtrMut
impl RefUnwindSafe for GlVoidPtrMut
impl Unpin for GlVoidPtrMut
impl UnsafeUnpin for GlVoidPtrMut
impl UnwindSafe for GlVoidPtrMut
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