pub trait Metadata<'a> {
const JSON_SCHEMA: &'a str;
}
Expand description
Metadata about a model.
Required Associated Constants§
Sourceconst JSON_SCHEMA: &'a str
const JSON_SCHEMA: &'a str
Name of the json-schema file that describes the entity that implements this trait. Should be only the file name, so that it can be resolved relative to the URL of the redfish service, or the public Redfish schema index.
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.