pub trait TypeUuidDynamic {
    fn uuid(&self) -> u128;
}
Expand description

Allows the TypeUuid constants to be retrieved via a trait object. It is automatically implemented for all types that implement TypeUuid.

It is theoretically possible to manually implement this independent of TypeUuid. Please don’t. It is critical that this return value be deterministic, and manual implementation could prevent that.

Required Methods§

Implementors§