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