pub trait UnsupportedValueErr {
// Required method
fn unsupported_value(context: &'static str, name: &'static str) -> Self;
}
Expand description
Trait for creating “unsupported value” errors.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.