Struct pilka_incremental::ash::vk::NvDeviceDiagnosticCheckpointsFn[]

pub struct NvDeviceDiagnosticCheckpointsFn {
    pub cmd_set_checkpoint_nv: extern "system" fn(CommandBuffer, *const c_void) -> c_void,
    pub get_queue_checkpoint_data_nv: extern "system" fn(Queue, *mut u32, *mut CheckpointDataNV) -> c_void,
}

Fields

cmd_set_checkpoint_nv: extern "system" fn(CommandBuffer, *const c_void) -> c_voidget_queue_checkpoint_data_nv: extern "system" fn(Queue, *mut u32, *mut CheckpointDataNV) -> c_void

Implementations

impl NvDeviceDiagnosticCheckpointsFn

pub fn name() -> &'static CStr

impl NvDeviceDiagnosticCheckpointsFn

pub fn load<F>(_f: F) -> NvDeviceDiagnosticCheckpointsFn where
    F: FnMut(&CStr) -> *const c_void

pub unsafe fn cmd_set_checkpoint_nv(
    &self,
    command_buffer: CommandBuffer,
    p_checkpoint_marker: *const c_void
) -> c_void

pub unsafe fn get_queue_checkpoint_data_nv(
    &self,
    queue: Queue,
    p_checkpoint_data_count: *mut u32,
    p_checkpoint_data: *mut CheckpointDataNV
) -> c_void

Trait Implementations

impl Clone for NvDeviceDiagnosticCheckpointsFn

impl Send for NvDeviceDiagnosticCheckpointsFn

impl Sync for NvDeviceDiagnosticCheckpointsFn

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.