本文簡要介紹rust語言中 Trait alloc::fmt::Pointer
的用法。
用法
pub trait Pointer {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
p
格式化。
Pointer
特征應將其輸出格式化為內存位置。這通常表示為十六進製。
有關格式化程序的更多信息,請參閱the module-level documentation。
例子
&i32
的基本用法:
let x = &42;
let address = format!("{:p}", x); // this produces something like '0x7f06092ac6d0'
在類型上實現Pointer
:
use std::fmt;
struct Length(i32);
impl fmt::Pointer for Length {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// use `as` to convert to a `*const T`, which implements Pointer, which we can use
let ptr = self as *const Self;
fmt::Pointer::fmt(&ptr, f)
}
}
let l = Length(42);
println!("l is in memory here: {:p}", l);
let l_ptr = format!("{:018p}", l);
assert_eq!(l_ptr.len(), 18);
assert_eq!(&l_ptr[..2], "0x");
相關用法
- Rust PoisonError用法及代碼示例
- Rust PoisonError.into_inner用法及代碼示例
- Rust Poll.map用法及代碼示例
- Rust Poll.map_ok用法及代碼示例
- Rust Poll.is_ready用法及代碼示例
- Rust Poll.ready用法及代碼示例
- Rust Poll.is_pending用法及代碼示例
- Rust Poll.map_err用法及代碼示例
- Rust PanicInfo.payload用法及代碼示例
- Rust Path.components用法及代碼示例
- Rust PathBuf.with_capacity用法及代碼示例
- Rust Peekable.peek用法及代碼示例
- Rust Path.is_symlink用法及代碼示例
- Rust Path.canonicalize用法及代碼示例
- Rust PartialOrd.partial_cmp用法及代碼示例
- Rust Path.is_relative用法及代碼示例
- Rust Path.file_stem用法及代碼示例
- Rust PermissionsExt.set_mode用法及代碼示例
- Rust Path.to_string_lossy用法及代碼示例
- Rust Path.display用法及代碼示例
- Rust PathBuf.into_os_string用法及代碼示例
- Rust Peekable.next_if用法及代碼示例
- Rust PanicInfo用法及代碼示例
- Rust PathBuf.pop用法及代碼示例
- Rust Path.ancestors用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Trait alloc::fmt::Pointer。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。