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


Rust Display用法及代碼示例


本文簡要介紹rust語言中 Trait alloc::fmt::Display 的用法。

用法

pub trait Display {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}

空格式的格式特征 {}

Display Debug 類似,但 Display 用於 user-facing 輸出,因此無法導出。

有關格式化程序的更多信息,請參閱the module-level documentation

例子

在類型上實現Display

use std::fmt;

struct Point {
    x: i32,
    y: i32,
}

impl fmt::Display for Point {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "({}, {})", self.x, self.y)
    }
}

let origin = Point { x: 0, y: 0 };

assert_eq!(format!("The origin is: {}", origin), "The origin is: (0, 0)");

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Trait alloc::fmt::Display。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。