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


Rust Result用法及代碼示例


本文簡要介紹rust語言中 Type Definition core::fmt::Result 的用法。

用法

pub type Result = Result<(), Error>;

格式化程序方法返回的類型。

例子

use std::fmt;

#[derive(Debug)]
struct Triangle {
    a: f32,
    b: f32,
    c: f32
}

impl fmt::Display for Triangle {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "({}, {}, {})", self.a, self.b, self.c)
    }
}

let pythagorean_triple = Triangle { a: 3.0, b: 4.0, c: 5.0 };

assert_eq!(format!("{}", pythagorean_triple), "(3, 4, 5)");

相關用法


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