Before attempt to convert buffer to dyn

This commit is contained in:
2024-11-21 19:21:15 -07:00
parent 028051a178
commit abaf58374f
3 changed files with 36 additions and 7 deletions

View File

@@ -21,6 +21,8 @@ pub enum TokenizerError {
UnknownKeywordOrIdentifierError(String, usize, usize),
}
pub trait Tokenize: Read + Seek {}
pub(crate) struct Tokenizer<T>
where
T: Read + Seek,