diff options
| author | John Millikin <john@john-millikin.com> | 2023-11-09 08:47:24 +0900 |
|---|---|---|
| committer | John Millikin <john@john-millikin.com> | 2023-11-10 07:50:11 +0900 |
| commit | 82a9f94de5145665bb3b3e64bbe8d01969b7ab1e (patch) | |
| tree | 70c6dd1293b9c0c85b25d92f0b9d2b58b79786be /library/alloc/src | |
| parent | 90fdc1fc270fef7d1a999207f1da29b41da70dac (diff) | |
| download | rust-82a9f94de5145665bb3b3e64bbe8d01969b7ab1e.tar.gz rust-82a9f94de5145665bb3b3e64bbe8d01969b7ab1e.zip | |
Closure-consuming helper functions for `fmt::Debug` helpers
Diffstat (limited to 'library/alloc/src')
| -rw-r--r-- | library/alloc/src/fmt.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/alloc/src/fmt.rs b/library/alloc/src/fmt.rs index 1e2c35bf735..5b50ef7bf6c 100644 --- a/library/alloc/src/fmt.rs +++ b/library/alloc/src/fmt.rs @@ -555,6 +555,8 @@ pub use core::fmt::Alignment; #[stable(feature = "rust1", since = "1.0.0")] pub use core::fmt::Error; +#[unstable(feature = "debug_closure_helpers", issue = "117729")] +pub use core::fmt::FormatterFn; #[stable(feature = "rust1", since = "1.0.0")] pub use core::fmt::{write, Arguments}; #[stable(feature = "rust1", since = "1.0.0")] |
