About the attribute

What is the meaning of #![stable(feature = "rust1", since = "1.0.0")]

Everything in std has a stability attribute documenting whether it is unstable or stable status and when it became stable. This includes all of the modules, including the root of std itself (which has been stable since version 1.0.0).

1 Like