pub trait RuntimeHostProviderErrorBoundary: Send + Sync {
// Required method
fn raise(&self, error: ProviderResolutionError) -> !;
}Expand description
Host exception boundary for core normalization errors. Python bindings
implement this by calling their existing panic_with_py_err(py_err(...)).
Required Methods§
fn raise(&self, error: ProviderResolutionError) -> !
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".