diff options
| author | tinaun <tinagma@gmail.com> | 2017-05-27 18:12:16 -0400 |
|---|---|---|
| committer | tinaun <tinagma@gmail.com> | 2017-06-20 04:38:02 -0400 |
| commit | fd9d7aa2cf76c949633cb4156642654238c03921 (patch) | |
| tree | d83554665cfdb26dd375b45339968e84f63df82c /src/libstd_unicode | |
| parent | 557967766be6139bd747ab2c3dc56ff0c9b8852a (diff) | |
| download | rust-fd9d7aa2cf76c949633cb4156642654238c03921.tar.gz rust-fd9d7aa2cf76c949633cb4156642654238c03921.zip | |
added `FromStr` Impl for `char`
Diffstat (limited to 'src/libstd_unicode')
| -rw-r--r-- | src/libstd_unicode/char.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd_unicode/char.rs b/src/libstd_unicode/char.rs index 92e5369758b..7476de162da 100644 --- a/src/libstd_unicode/char.rs +++ b/src/libstd_unicode/char.rs @@ -38,6 +38,8 @@ use tables::{conversions, derived_property, general_category, property}; pub use core::char::{MAX, from_digit, from_u32, from_u32_unchecked}; #[stable(feature = "rust1", since = "1.0.0")] pub use core::char::{EscapeDebug, EscapeDefault, EscapeUnicode}; +#[stable(feature = "char_from_str", since = "1.19.0")] +pub use core::char::ParseCharError; // unstable reexports #[unstable(feature = "try_from", issue = "33417")] |
