[][src]Trait type_uuid::TypeUuidDynamic

pub trait TypeUuidDynamic: Sealed {
    fn uuid(&self) -> Bytes;
}

Allows the TypeUuid constants to be retrieved via a trait object.

This trait is sealed and cannot be implemented outside of the type-uuid codebase. It is implemented automatically for all types that implement TypeUuid, which you should implement instead.

Required methods

fn uuid(&self) -> Bytes

Loading content...

Implementors

impl<T: TypeUuid> TypeUuidDynamic for T[src]

Loading content...