“duplicate definitions with name `is_soa`” 可翻译为:具有名称 `is_soa` 的重复定义。

huangapple go评论54阅读模式
英文:

duplicate definitions with name `is_soa`

问题

我的代码上周没问题。但是今天突然出现了这个错误:
错误[E0592]: 名为 `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)]
    |                 ^^^^^^^^^^^ `is_soa` 的重复定义
...
994 |     pub fn is_soa(&self) -> bool {
    |     ---------------------------- `is_soa` 的另一个定义

我使用的是: `rustc 1.68.0-nightly (bdb07a8ec 2022-12-11)`。
我升级到了最新的夜间版本: `rustc 1.72.0-nightly (1c53407e8 2023-05-28)`。
但错误似乎没有改变。有其他人也遇到过这个问题吗?
英文:

My code was fine last week. And out of nowhere today, this error suddenly appeared:

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`

I'm using: rustc 1.68.0-nightly (bdb07a8ec 2022-12-11).
I upgraded to the latest nightly version: rustc 1.72.0-nightly (1c53407e8 2023-05-28).
But the error seems to be the same. Has someone else experience this, too?

答案1

得分: 2

抱歉,这是在GitHub上提出的问题。

英文:

Oh, alright, this was raised in github.

Sorry folks.

huangapple
  • 本文由 发表于 2023年5月29日 17:01:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/76355974.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定