pub trait CustomTypeKind<L>:
Debug
+ Clone
+ PartialEq
+ Eqwhere
L: SchemaTypeLink,{
type CustomTypeValidation: CustomTypeValidation;
type CustomTypeKindLabel: CustomTypeKindLabel;
// Required method
fn label(&self) -> Self::CustomTypeKindLabel;
}
Required Associated Types§
type CustomTypeValidation: CustomTypeValidation
type CustomTypeKindLabel: CustomTypeKindLabel
Required Methods§
fn label(&self) -> Self::CustomTypeKindLabel
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.