gpt4 book ai didi

rust - 为带有字段的枚举实现 fmt::Display

转载 作者:行者123 更新时间:2023-12-01 23:05:49 25 4
gpt4 key购买 nike

我正在尝试为 Rust enum 实现 fmt::Display 特性:

use std::fmt;
use std::error::Error;
use std::fmt::Display;

enum A {
B(u32, String, u32, u32, char, u32),
}

impl Display for A {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
A::B(a, b, c, d, e, f) => write!(f, "{} {} {} {} {} {}", a, b, c, d, e, f),
}
}
}

fn main() -> Result<(), Box<dyn Error>> {
let a = A::B(0, String::from("hola"), 1, 2, 'a', 3);
Ok(())
}

但是我收到了这个我无法理解的错误:

error[E0599]: no method named `write_fmt` found for type `u32` in the current scope
--> src/main.rs:14:38
|
14 | A::B(a, b, c, d, e, f) => write!(f, "{} {} {} {} {} {}", a, b, c, d, e, f),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `u32`
|
= note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)

For more information about this error, try `rustc --explain E0599`.
error: could not compile `test1` due to previous error

这是什么意思?为什么没有为 u32 找到 write! 宏? u32 是否表示枚举的字段之一?

最佳答案

这里的问题是您的match arm binding f: &u32 隐藏了value parameter f: &mut Formatter。因此,您不是将 Formatter 传递给 write! 宏,而是传递整数(引用)。

你可以一起去

impl Display for A {
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
match &*self {
A::B(a, b, c, d, e, f) => write!(formatter, "{} {} {} {} {} {}", a, b, c, d, e, f),
}
}
}

或者将匹配臂绑定(bind)从 f 重命名为其他名称。

关于rust - 为带有字段的枚举实现 fmt::Display,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70909278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com