-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f4dfa8
commit ebb8722
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
src/doc/unstable-book/src/library-features/default-free-fn.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# `default_free_fn` | ||
|
||
The tracking issue for this feature is: [#73014] | ||
|
||
[#73014]: https://github.com/rust-lang/rust/issues/73014 | ||
|
||
------------------------ | ||
|
||
Adds a free `default()` function to the `std::default` module. This function | ||
just forwards to [`Default::default()`], but may remove repetition of the word | ||
"default" from the call site. | ||
|
||
Here is an example: | ||
|
||
```rust | ||
#![feature(default_free_fn)] | ||
use std::default::default; | ||
|
||
#[derive(Default)] | ||
struct AppConfig { | ||
foo: FooConfig, | ||
bar: BarConfig, | ||
} | ||
|
||
#[derive(Default)] | ||
struct FooConfig { | ||
foo: i32, | ||
} | ||
|
||
#[derive(Default)] | ||
struct BarConfig { | ||
bar: f32, | ||
baz: u8, | ||
} | ||
|
||
fn main() { | ||
let options = AppConfig { | ||
foo: default(), | ||
bar: BarConfig { | ||
bar: 10.1, | ||
..default() | ||
}, | ||
}; | ||
} | ||
``` |