pub trait TypeInfo: Sealed {
// Required method
fn typeinfo() -> Type;
// Provided method
fn temp_id_prefix() -> &'static str { ... }
}Expand description
This trait provides some introspection on STAM data types. It is a sealed trait that can not be implemented.
Required Methods§
Provided Methods§
sourcefn temp_id_prefix() -> &'static str
fn temp_id_prefix() -> &'static str
Return the prefix for temporary identifiers of this type
Object Safety§
This trait is not object safe.