当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust DebugMap.entries用法及代码示例


本文简要介绍rust语言中 std::fmt::DebugMap.entries 的用法。

用法

pub fn entries<K, V, I>(&mut self, entries: I) -> &mut DebugMap<'a, 'b> where    K: Debug,    V: Debug,    I: IntoIterator<Item = (K, V)>,

将条目迭代器的内容添加到映射输出。

例子

use std::fmt;

struct Foo(Vec<(String, i32)>);

impl fmt::Debug for Foo {
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt.debug_map()
           // We map our vec so each entries' first field will become
           // the "key".
           .entries(self.0.iter().map(|&(ref k, ref v)| (k, v)))
           .finish()
    }
}

assert_eq!(
    format!("{:?}", Foo(vec![("A".to_string(), 10), ("B".to_string(), 11)])),
    "{\"A\": 10, \"B\": 11}",
);

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::fmt::DebugMap.entries。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。