tisonkun commented on issue #46:
URL:
https://github.com/apache/datasketches-rust/issues/46#issuecomment-3694832060
And the general Error type would look like:
```rust
pub struct Error {
kind: ErrorKind,
message: String,
context: Vec<(&'static str, String)>,
backtrace: Option<Box<Backtrace>>,
}
```
See also
https://github.com/apache/opendal/blob/18fa9fe953f8579c9c4685a00d2524a68dad7bbb/core/core/src/types/error.rs#L223C1-L233C2
Other fields may be added when we find them useful in datasketches' scope.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]