We have things in our API that are unstable. Some examples include:
- many methods on Drawing
- everything to do with events
We should make it impossible to use these accidentally by forcing people to use a cargo feature called "unstable". This feature will be disabled by default.
We should make sure that docs.rs still shows these functions and that we have some documentation in each of them to indicate that they shouldn't be used.
One day we might be able to get a working #[unstable] attribute, but until then this will have to do.
We have things in our API that are unstable. Some examples include:
We should make it impossible to use these accidentally by forcing people to use a cargo feature called "unstable". This feature will be disabled by default.
We should make sure that docs.rs still shows these functions and that we have some documentation in each of them to indicate that they shouldn't be used.
One day we might be able to get a working #[unstable] attribute, but until then this will have to do.
Eventas#[non_exhaustive]