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


Rust DebugTuple用法及代码示例


本文简要介绍rust语言中 Struct alloc::fmt::DebugTuple 的用法。

用法

pub struct DebugTuple<'a, 'b> where    'b: 'a,  { /* fields omitted */ }

帮助 fmt::Debug 实现的结构。

当您希望将格式化的元组作为 Debug::fmt 实现的一部分输出时,这很有用。

这可以通过 Formatter::debug_tuple 方法构造。

例子

use std::fmt;

struct Foo(i32, String);

impl fmt::Debug for Foo {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.debug_tuple("Foo")
           .field(&self.0)
           .field(&self.1)
           .finish()
    }
}

assert_eq!(
    format!("{:?}", Foo(10, "Hello World".to_string())),
    "Foo(10, \"Hello World\")",
);

相关用法


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