1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-24 17:06:37 +02:00
comprehensive-rust/third_party/rust-by-example/destructuring-structs.rs
2022-12-21 16:38:28 +01:00

15 lines
352 B
Rust

struct Foo {
x: (u32, u32),
y: u32,
}
#[rustfmt::skip]
fn main() {
let foo = Foo { x: (1, 2), y: 3 };
match foo {
Foo { x: (1, b), y } => println!("x.0 = 1, b = {b}, y = {y}"),
Foo { y: 2, x: i } => println!("y = 2, i = {i:?}"),
Foo { y, .. } => println!("y = {y}, other fields were ignored"),
}
}