本文简要介绍rust语言中 alloc::fmt::Display.fmt
的用法。
用法
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
使用给定的格式化程序格式化值。
例子
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Display for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "({}, {})", self.longitude, self.latitude)
}
}
assert_eq!("(1.987, 2.983)",
format!("{}", Position { longitude: 1.987, latitude: 2.983, }));
相关用法
- Rust Display用法及代码示例
- Rust DispatchFromDyn用法及代码示例
- Rust DirBuilder.new用法及代码示例
- Rust DirEntry.metadata用法及代码示例
- Rust Div用法及代码示例
- Rust DirBuilder.recursive用法及代码示例
- Rust DirBuilder.create用法及代码示例
- Rust DirEntry.path用法及代码示例
- Rust DirEntry.file_type用法及代码示例
- Rust DivAssign用法及代码示例
- Rust Difference用法及代码示例
- Rust DivAssign.div_assign用法及代码示例
- Rust DirBuilderExt.mode用法及代码示例
- Rust DirEntry.file_name用法及代码示例
- Rust Div.div用法及代码示例
- Rust DirEntryExt2.file_name_ref用法及代码示例
- Rust DirEntryExt.ino用法及代码示例
- Rust Duration.as_micros用法及代码示例
- Rust Duration.subsec_nanos用法及代码示例
- Rust DebugList.entries用法及代码示例
- Rust Duration.checked_add用法及代码示例
- Rust DoubleEndedIterator.try_rfold用法及代码示例
- Rust Drain.as_slice用法及代码示例
- Rust Duration.new用法及代码示例
- Rust DerefMut用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::fmt::Display.fmt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。