We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
E.g.,
struct Foo { 0: String, 42: i32, } fn main() { let foo = Foo { 42: 0, 0: "Hello".to_owned() }; let x: i32 = foo.42; }
Helps bridge the gap between structs and tuples.
cc @nikomatsakis