为什么我不能声明具有元组参数匹配的特征函数?
#![allow(unused)]
// This works
fn foo((x, y): (i32, i32)) {
}
trait Bar {
// This does not work
fn bar((x, y): (i32, i32));
}
编译上面的输出是这样的:
error: expected one of `)` or `,`, found `:`
--> src/main.rs:7:18
|
7 | fn bar((x, y): (i32, i32));
| ^ expected one of `)` or `,` here
error: expected one of `!`, `&&`, `&`, `(`, `)`, `*`, `<`, `?`, `[`, `_`, `dyn`, `extern`, `fn`, `for`, `impl`, `unsafe`, or lifetime, found `:`
--> src/main.rs:7:18
|
7 | fn bar((x, y): (i32, i32));
| ^ expected one of 17 possible tokens here
error[E0601]: `main` function not found in crate `playground`
|
= note: consider adding a `main` function to `src/main.rs`
答案 0 :(得分:2)
Rust不支持此语法,并且目前没有开放的RFC可以更改它。
在特征中,除了用于文档记录外,它没有其他用途。但是,由于无论如何都定义了特征,因此可以首先为该参数定义一个更具描述性的类型。对于您来说,Point
包含x
和y
字段。