-
-
Notifications
You must be signed in to change notification settings - Fork 331
Open
Labels
Description
- RFC: [RFC] Default field values rust-lang/rfcs#3681
- Tracking issue: Tracking issue for RFC 3681: Default field values rust-lang/rust#132162
- Feature gate:
#![feature(default_field_values)]
#[derive(Default)]
struct Pet {
name: Option<String>,
age: i128 = 42,
// ^^^^
}
mar10uane, jieyouxu, hasali19, bjoernager, crabdancing and 2 more