Trait renderdoc::entry::ApiVersion[][src]

pub trait ApiVersion {
    type Entry: Clone;

    const VERSION: Version;
    fn load() -> Result<Self::Entry, String> { ... }
}

Entry point into the RenderDoc API.

Associated Types

Entry point struct.

Associated Constants

Minimum compatible version number.

Provided Methods

Initializes a new instance of the RenderDoc API.

Safety

This function is not thread-safe and should not be called on multiple threads at once.

Implementors