pub trait RocmProbePort {
// Required method
fn probe_rocm(&self) -> Result<RocmRuntimeProbe, RocmLoadError>;
}Expand description
Capsule membrane used by the provider to receive an explicit probe.
Required Methods§
Sourcefn probe_rocm(&self) -> Result<RocmRuntimeProbe, RocmLoadError>
fn probe_rocm(&self) -> Result<RocmRuntimeProbe, RocmLoadError>
Returns a capsule-owned ROCm probe without ambient rediscovery.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".