我具有以下结构:
struct Pixel{x:f64, y:f64, dx:f64, dy:f64}
我将此结构作为函数的参数。我想减少打字并解压:
fn foo(pixel:Pixel){
let (x, y, dx, dy) = pixel;
}
此代码无法编译。是否有语法语法可以避免无休止的pixel.x
,pixel.dx
等?我想有一些简单的方法可以将结构的值“提取”(别名)到我的函数中。而且我想避免let x = pixel.x; let dx = pixel.dx
等的冗长内容。
有一种简洁的方法吗?
答案 0 :(得分:3)
建议在这里仔细阅读chapter 18 of The Rust Programming Language。可以使用模式匹配来解构数组,枚举,结构和元组。
let Pixel { x, y, dx, dy } = pixel;
甚至可以在函数的参数自变量中使用它。
fn foo(Pixel { x, y, dx, dy }: Pixel) {
}