pub struct AdapterContext<'a, K: AdapterKind> { /* private fields */ }
Expand description
One specific instance of a configured adapter that can be used to perform blitting operations.
Implementations§
Source§impl<'a, K: AdapterKind> AdapterContext<'a, K>
impl<'a, K: AdapterKind> AdapterContext<'a, K>
Sourcepub fn as_mut_ptr(&mut self) -> *mut GvoxAdapterContext
pub fn as_mut_ptr(&mut self) -> *mut GvoxAdapterContext
Retrieves a raw handle to the adapter context.
Trait Implementations§
Source§impl<'a, K: Debug + AdapterKind> Debug for AdapterContext<'a, K>
impl<'a, K: Debug + AdapterKind> Debug for AdapterContext<'a, K>
Source§impl<'a, K: AdapterKind> Drop for AdapterContext<'a, K>
impl<'a, K: AdapterKind> Drop for AdapterContext<'a, K>
Source§impl<'a, K: PartialEq + AdapterKind> PartialEq for AdapterContext<'a, K>
impl<'a, K: PartialEq + AdapterKind> PartialEq for AdapterContext<'a, K>
impl<'a, K: Eq + AdapterKind> Eq for AdapterContext<'a, K>
impl<'a, K: AdapterKind> StructuralPartialEq for AdapterContext<'a, K>
Auto Trait Implementations§
impl<'a, K> Freeze for AdapterContext<'a, K>
impl<'a, K> RefUnwindSafe for AdapterContext<'a, K>where
K: RefUnwindSafe,
impl<'a, K> !Send for AdapterContext<'a, K>
impl<'a, K> !Sync for AdapterContext<'a, K>
impl<'a, K> Unpin for AdapterContext<'a, K>where
K: Unpin,
impl<'a, K> UnwindSafe for AdapterContext<'a, K>where
K: UnwindSafe,
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