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


Rust Display用法及代码示例


本文简要介绍rust语言中 Trait std::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 std::fmt::Display。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。