Andres
Andres
Ideally something like this would work ```rust // imagine this is the start of a module #![faux::mock] struct Foo {} impl Foo {} /* more structs and impls here */...
### Expected Errors from a service should be transparently proxied to the client through the gateway. ### Actual Errors from services are wrapped inside another error, their root cause hard...
With the soon to be stabilitized [associated constants](https://doc.rust-lang.org/1.6.0/book/associated-constants.html), I wonder if this project would greatly benefit for rewriting some of the Vec code to use them. This would allow for...
As of Rust v1.63.0 new types `OwnedFd` and `BorrowedFd` were added so that rust can handle the lifetime of file descriptors using normal RAII and borrow rules. I think it'd...
## Motivation At work we use `tonic` to query CRI sockets about k8s information when available. This information is best effort only so we try to ignore "expected" errors while...
currently the only tags added to transactions are the tags on the scope at the time you finish a transaction. Sometimes, however, it is useful to have tags that aren't...