pub trait JsonKey {
// Required method
fn extract_from_value(
&self,
value: JsonValue,
) -> Result<JsonValue, JsonExtError>;
}Required Methods§
fn extract_from_value( &self, value: JsonValue, ) -> Result<JsonValue, JsonExtError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".