本文简要介绍rust语言中 Type Definition std::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 Result.unwrap_or_else用法及代码示例
- Rust Result.as_deref_mut用法及代码示例
- Rust Result.unwrap_or_default用法及代码示例
- Rust Result.as_mut用法及代码示例
- Rust Result.map_or用法及代码示例
- Rust Result.err用法及代码示例
- Rust Result用法及代码示例
- Rust Result.is_err用法及代码示例
- Rust Result.into_ok用法及代码示例
- Rust Result.cloned用法及代码示例
- Rust Result.unwrap_err用法及代码示例
- Rust Result.expect用法及代码示例
- Rust Result.map_err用法及代码示例
- Rust Result.map用法及代码示例
- Rust Result.iter用法及代码示例
- Rust Result.and_then用法及代码示例
- Rust Result.into_ok_or_err用法及代码示例
- Rust Result.into_err用法及代码示例
- Rust Result.or用法及代码示例
- Rust Result.ok用法及代码示例
- Rust Result.transpose用法及代码示例
- Rust Result.iter_mut用法及代码示例
- Rust Result.contains用法及代码示例
- Rust Result.or_else用法及代码示例
- Rust Result.expect_err用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Type Definition std::fmt::Result。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。