How do I print variables in Rust and have it show everything about that variable, like Ruby's .inspect?

前端 未结 2 1707
-上瘾入骨i
-上瘾入骨i 2021-02-13 06:20
use std::collections::HashMap;

fn main() {
    let mut hash = HashMap::new();
    hash.insert(\"Daniel\", \"798-1364\");
    println!(\"{}\", hash);
}

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-13 06:28

    What you're looking for is the Debug formatter:

    use std::collections::HashMap;
    
    fn main() {
        let mut hash = HashMap::new();
        hash.insert("Daniel", "798-1364");
        println!("{:?}", hash);
    }
    

    This should print:

    {"Daniel": "798-1364"}
    

    See also:

    • What is the difference between println's format styles?

提交回复
热议问题