Struct ash::extensions_generated::khr::deferred_host_operations::Device
source · pub struct Device {
pub(crate) fp: DeviceFn,
pub(crate) handle: Device,
}
Expand description
VK_KHR_deferred_host_operations device-level functions
Fields§
§fp: DeviceFn
§handle: Device
Implementations§
source§impl Device
impl Device
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<()>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Device
impl RefUnwindSafe for Device
impl Send for Device
impl Sync for Device
impl Unpin for Device
impl UnwindSafe for Device
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