WIP - revamp ProgrammingLanguageInterface trait
This needs to be able to work smoothly with multiple types
This commit is contained in:
parent
75b1f9cce5
commit
0f7e568341
@ -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>,
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user