pub trait PrimitiveType: HasStaticTypeId {
    fn name() -> &'static str;
    fn guid() -> &'static Guid;
}
Expand description

Defines functions for built-in types like f32, i32, etc.

Required Methods§

Returns the name of the type

Returns the GUID of the type

Implementations on Foreign Types§

Implementors§