-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GEN-196: Move error-stack-experimental
into error-stack
#5181
Changes from 10 commits
141a763
ebf3400
b35717c
a7d808e
562cd3f
e732c39
ed109a2
6a1ca3f
b2b7c62
65d144d
bc779f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
//! Extension traits for `Report` and `Result`. | ||
//! | ||
//! These traits are currently unstable and require the `unstable` feature flag to be enabled. | ||
//! They provide additional functionality and convenience methods for error handling and | ||
//! manipulation. | ||
//! | ||
//! # Note | ||
//! | ||
//! The traits and methods in this module are subject to change and may be modified or | ||
//! removed in future versions. Use them with caution in production environments. | ||
|
||
pub(crate) mod iter; | ||
#[cfg(feature = "futures")] | ||
pub(crate) mod stream; | ||
pub(crate) mod tuple; | ||
|
||
#[cfg(feature = "futures")] | ||
pub use self::stream::{TryCollectReports, TryReportStreamExt}; | ||
pub use self::{iter::TryReportIteratorExt, tuple::TryReportTupleExt}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need to mention this everywhere as the documentation is properly generating this:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just wanted to make sure to mention that it is exempt from semver guarantees and why, not necessarily that it's unstable.