本文简要介绍rust语言中 core::fmt::Formatter.width
的用法。
用法
pub fn width(&self) -> Option<usize>
可选地指定输出应该是的整数宽度。
例子
use std::fmt;
struct Foo(i32);
impl fmt::Display for Foo {
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
if let Some(width) = formatter.width() {
// If we received a width, we use it
write!(formatter, "{:width$}", &format!("Foo({})", self.0), width = width)
} else {
// Otherwise we do nothing special
write!(formatter, "Foo({})", self.0)
}
}
}
assert_eq!(&format!("{:10}", Foo(23)), "Foo(23) ");
assert_eq!(&format!("{}", Foo(23)), "Foo(23)");
相关用法
- Rust Formatter.write_fmt用法及代码示例
- Rust Formatter.write_str用法及代码示例
- Rust Formatter.precision用法及代码示例
- Rust Formatter.debug_list用法及代码示例
- Rust Formatter.sign_minus用法及代码示例
- Rust Formatter.debug_tuple用法及代码示例
- Rust Formatter.fill用法及代码示例
- Rust Formatter.debug_struct用法及代码示例
- Rust Formatter.debug_map用法及代码示例
- Rust Formatter.alternate用法及代码示例
- Rust Formatter.sign_plus用法及代码示例
- Rust Formatter.sign_aware_zero_pad用法及代码示例
- Rust Formatter.pad_integral用法及代码示例
- Rust Formatter.pad用法及代码示例
- Rust Formatter.align用法及代码示例
- Rust Formatter.debug_set用法及代码示例
- Rust FromUtf16Error用法及代码示例
- Rust FromUtf8Error.as_bytes用法及代码示例
- Rust File用法及代码示例
- Rust FromVecWithNulError.into_bytes用法及代码示例
- Rust FileExt.read_exact_at用法及代码示例
- Rust FileTypeExt.is_char_device用法及代码示例
- Rust FromBytesWithNulError用法及代码示例
- Rust File.open用法及代码示例
- Rust File.sync_data用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::fmt::Formatter.width。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。