Trait methods currently cannot take patterns as arguments.
Erroneous code example:
#![allow(unused)]
fn main() {
trait Foo {
fn foo((x, y): (i32, i32)); // error: patterns aren't allowed
// in trait methods
}
} You can instead use a single name for the argument:
#![allow(unused)]
fn main() {
trait Foo {
fn foo(x_and_y: (i32, i32)); // ok!
}
}
© 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/E0642.html