rust 名称为`is_soa`的重复定义[已关闭]

aiqt4smr  于 2023-06-06  发布在  其他
关注(0)|答案(1)|浏览(374)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
7天前关闭
Improve this question
上周我的代码还不错。今天,这个错误突然出现了:

error[E0592]: duplicate definitions with name `is_soa`
   --> /.../.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.22.0/src/rr/record_data.rs:55:17
    |
55  | #[derive(Debug, EnumAsInner, PartialEq, Clone, Eq)]
    |                 ^^^^^^^^^^^ duplicate definitions for `is_soa`
...
994 |     pub fn is_soa(&self) -> bool {
    |     ---------------------------- other definition for `is_soa`

我使用的是:rustc 1.68.0-nightly (bdb07a8ec 2022-12-11)
我升级到了最新的夜间版本:rustc 1.72.0-nightly (1c53407e8 2023-05-28)
但错误似乎是一样的。有没有其他人也有过这样的经历?

相关问题