1 2 3 4 5 6 7 8 9 10 11 12 13 14
/// Options for query processing pub struct QueryOptions { pub query: String, pub trace: bool, } impl QueryOptions { pub fn new(query: &str, trace: bool) -> Self { Self { query: query.to_string(), trace, } } }