mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
449 B
23 lines
449 B
#[derive(Debug)]
|
|
struct Rectangle {
|
|
width: u32,
|
|
height: u32,
|
|
}
|
|
|
|
fn main() {
|
|
let mut list = [
|
|
Rectangle { width: 10, height: 1 },
|
|
Rectangle { width: 3, height: 5 },
|
|
Rectangle { width: 7, height: 12 },
|
|
];
|
|
|
|
let mut sort_operations = vec![];
|
|
let value = String::from("by key called");
|
|
|
|
list.sort_by_key(|r| {
|
|
sort_operations.push(value);
|
|
r.width
|
|
});
|
|
println!("{:#?}", list);
|
|
}
|