pub trait TypeUuidDynamic {
    // Required methods
    fn type_uuid(&self) -> Uuid;
    fn type_name(&self) -> &'static str;
}
Expand description

A trait for types with an associated UUID.

Required Methods§

source

fn type_uuid(&self) -> Uuid

source

fn type_name(&self) -> &'static str

Implementors§

source§

impl<T> TypeUuidDynamic for Twhere T: TypeUuid,