pub trait SvcParamValue {
// Required method
fn key(&self) -> SvcParamKey;
}Expand description
A type representing a service binding parameter value.
Required Methods§
Sourcefn key(&self) -> SvcParamKey
fn key(&self) -> SvcParamKey
Returns the parameter key of the value.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".