Skip to main content

BindingResource

Trait BindingResource 

Source
pub trait BindingResource:
    Send
    + Sync
    + Debug { }
Expand description

Resource retained by a registered provider context or authority.

The registry treats this value as an opaque lifetime pin. Concrete managers may store CUDA contexts, provider libraries, accounting authorities, or a composite resource owner here.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> BindingResource for T
where T: Send + Sync + Debug,