Hi, i found a lack of precision with the compiler:
fn main() {
let var1 = "test1";
let rawstr = r#"{"type": "type1", "type2": var1}"#;
rawstr.debugtype();
}
it says:
no method named debugtype found for reference &str in the current scope
How can i get the same error message with rawstring ?
(or &rawstring ?)