pub trait LexerTypes: Debug{
type LexemeT: Lexeme<Self::StorageT>;
type StorageT: 'static + Debug + Hash + PrimInt + Unsigned;
type LexErrorT: LexError;
}
Required Associated Types§
type LexemeT: Lexeme<Self::StorageT>
type StorageT: 'static + Debug + Hash + PrimInt + Unsigned
type LexErrorT: LexError
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.