WIP - revamp ProgrammingLanguageInterface trait

This needs to be able to work smoothly with multiple types
This commit is contained in:
Greg Shuflin 2021-10-14 00:36:09 -07:00
parent 75b1f9cce5
commit 0f7e568341
1 changed files with 8 additions and 0 deletions

View File

@ -15,8 +15,16 @@ pub trait ProgrammingLanguageInterface {
}
}
//TODO this is what I want
/*
struct Options<T> {
lang_options: T
}
*/
pub struct ComputationRequest<'a> {
pub source: &'a str,
//pub options: Options<()>,
pub debug_requests: HashSet<DebugAsk>,
}