pub trait IObjType: IDisplay + IMetadata {
// Provided methods
fn obj_type(&self) -> ObjType { ... }
fn obj_name(&self) -> &'static str { ... }
fn hash_seed(&self) -> String { ... }
}Provided Methods§
fn obj_type(&self) -> ObjType
fn obj_name(&self) -> &'static str
fn hash_seed(&self) -> String
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".