pub unsafe trait IdentifierType: Debug {
// Required method
fn runtime_value(&self) -> RuntimeType;
}Expand description
§Safety
Must only be implemented on type that are transparently RuntimeType
Required Methods§
fn runtime_value(&self) -> RuntimeType
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".