pub trait TypeUuidProvider: Sized {
    // Required method
    fn type_uuid() -> Uuid;
}
Expand description

A trait for an entity that has unique type identifier.

Required Methods§

source

fn type_uuid() -> Uuid

Return type UUID.

Object Safety§

This trait is not object safe.

Implementors§