Christopher Berner
Christopher Berner
I think a panic is appropriate. The RaptorQ algorithm does not detect corrupted packets, so its the callers responsibility to pass valid data. If you'd like to submit a PR...
It does. All the APIs are designed to be similar in function to `std::collections::BtreeMap` On Sun, Mar 31, 2024 at 12:16 PM Alexandre Bique ***@***.***> wrote: > Hi, > >...
Ya, I didn't implement that because you would have to insert a &String. And with &str you can call to_string() when retrieving values, if needed. Do you have a use...
A lot of the code in fuser is from a previous maintainer. The `Reply` trait included. Feel free to submit PRs that clean up parts of the public API, which...
@asomers hmm, it seems like there's an assertion failure in the tests. Do you know what's up with that?
I must admit to being a bit ignorant of how `FUSE_DESTROY` works. Is it delivered by the kernel after the mountpoint has already been removed? If so, then ya skipping...
That notebook isn't accessible, but ya AIs are known to be harsh when you ask them to be. In its current state, I don't think we'll be able to merge...
I think `#[async_trait]` might be unnecessary as of Rust 1.75 ([link](https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits/)), but I'm not entirely sure. And then rather than add an async `run_with_notifications()` to Session. I was thinking we'd...
I think a separate crate makes the most sense. That way you'll be able to develop it without blocking on me reviewing PRs (I don't have much time to spend...
Ya, I recall this being kind of hacky, and am definitely open to improving it. Do you know how libfuse handles it? I think I copied this from libfuse, but...