Skip to content

Commit cc1e05f

Browse files
committed
Stabilize std::error::Error::type_id
This should have been part of rust-lang#57834 FCP: rust-lang#27745 (comment)
1 parent 741a3d4 commit cc1e05f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/libstd/error.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,7 @@ pub trait Error: Debug + Display {
197197

198198
/// Get the `TypeId` of `self`
199199
#[doc(hidden)]
200-
#[unstable(feature = "error_type_id",
201-
reason = "unclear whether to commit to this public implementation detail",
202-
issue = "27745")]
200+
#[stable(feature = "error_type_id", since = "1.34.0")]
203201
fn type_id(&self) -> TypeId where Self: 'static {
204202
TypeId::of::<Self>()
205203
}

0 commit comments

Comments
 (0)