當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。