A trait method was declared const.
Erroneous code example:
#![allow(unused)]
fn main() {
trait Foo {
const fn bar() -> u32; // error!
}
impl Foo for () {
const fn bar() -> u32 { 0 } // error!
}
} Trait methods cannot be declared const by design. For more information, see RFC 911.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/error_codes/E0379.html