pub trait NvDeviceDiagnosticCheckpointsExtension: DeviceV1_0 {
    const METADATA: Extension = NV_DEVICE_DIAGNOSTIC_CHECKPOINTS_EXTENSION;

    // Provided methods
    unsafe fn cmd_set_checkpoint_nv(
        &self,
        command_buffer: CommandBuffer,
        checkpoint_marker: &c_void
    ) { ... }
    unsafe fn get_queue_checkpoint_data_nv(
        &self,
        queue: Queue
    ) -> Vec<CheckpointDataNV> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = NV_DEVICE_DIAGNOSTIC_CHECKPOINTS_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§