Skip to content

Add example struct field init shorthand #837

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from Jun 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions examples/custom_types/structs/structs.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#[derive(Debug)]
struct Person<'a> {
name: &'a str,
age: u8
}

// A unit struct
struct Nil;

Expand All @@ -18,6 +24,15 @@ struct Rectangle {
}

fn main() {
// Create struct with field init shorthand
let name = "Peter";
let age = 27;
let peter = Person { name, age };

// Print debug struct
println!("{:?}", peter);


// Instantiate a `Point`
let point: Point = Point { x: 0.3, y: 0.4 };

Expand Down