Rust中r#的含义
pub struct Tool {
/// The schema of the tool. Currently, only functions are supported.
r#type: ToolType,
/// The schema of the tool. Currently, only functions are supported.
function: FunctionInfo,
}
fn main(){
let website = r#"
"xiachedan.cn"
"#;
println!("{}",website);
}