Struct ash::extensions::khr::DeferredHostOperations
source · pub struct DeferredHostOperations { /* private fields */ }
Implementations§
source§impl DeferredHostOperations
impl DeferredHostOperations
pub fn new(instance: &Instance, device: &Device) -> Self
sourcepub unsafe fn create_deferred_operation(
&self,
allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<DeferredOperationKHR>
pub unsafe fn create_deferred_operation( &self, allocation_callbacks: Option<&AllocationCallbacks> ) -> VkResult<DeferredOperationKHR>
sourcepub unsafe fn deferred_operation_join(
&self,
operation: DeferredOperationKHR
) -> VkResult<()>
pub unsafe fn deferred_operation_join( &self, operation: DeferredOperationKHR ) -> VkResult<()>
sourcepub unsafe fn destroy_deferred_operation(
&self,
operation: DeferredOperationKHR,
allocation_callbacks: Option<&AllocationCallbacks>
)
pub unsafe fn destroy_deferred_operation( &self, operation: DeferredOperationKHR, allocation_callbacks: Option<&AllocationCallbacks> )
sourcepub unsafe fn get_deferred_operation_max_concurrency(
&self,
operation: DeferredOperationKHR
) -> u32
pub unsafe fn get_deferred_operation_max_concurrency( &self, operation: DeferredOperationKHR ) -> u32
sourcepub unsafe fn get_deferred_operation_result(
&self,
operation: DeferredOperationKHR
) -> VkResult<()>
pub unsafe fn get_deferred_operation_result( &self, operation: DeferredOperationKHR ) -> VkResult<()>
pub const fn name() -> &'static CStr
pub fn fp(&self) -> &KhrDeferredHostOperationsFn
pub fn device(&self) -> Device
Trait Implementations§
source§impl Clone for DeferredHostOperations
impl Clone for DeferredHostOperations
source§fn clone(&self) -> DeferredHostOperations
fn clone(&self) -> DeferredHostOperations
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 moreAuto Trait Implementations§
impl Freeze for DeferredHostOperations
impl RefUnwindSafe for DeferredHostOperations
impl Send for DeferredHostOperations
impl Sync for DeferredHostOperations
impl Unpin for DeferredHostOperations
impl UnwindSafe for DeferredHostOperations
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