Friedel Ziegelmayer
Friedel Ziegelmayer
The failure crate as a way to solve this somewhat nicely ```rust #[derive(failure)] pub enum MyError { #[fail(display = "This is an error with props: {}, {}", _0, _1)] Error(String,...
My code needs to be able to do both relative and from start seeks, but they likely will be inside the current buffer, due to the way they are called,...
Lets go with updating examples & docs for now. I agree it is surprising, but I think I'd like to keep the api as it is for now. We could...
This part was ported dirctly from the sync implementation, I wouldn't mind a cleanup of that code at all.
Agree, it would be very useful to go to 64kib chunk size to minimize space overhead. While 6% sounds small, it does add up when looking at TB scale of...
When comparing with the `async` version, I would expect the Iterator part not to be shown, given that there is like for `async fn` an additional marker on the `fn`...
This would be great if this could be done, happy to help. I am currently resorting to parsing the stdout which is not ideal. My use case is, that I...
The challenge I have is that (a) I can't load all items from the database due to performance issues and (b) because there is variable sized text in there, I...
@coderedart yes that’s what I am aiming for, just without manually pressing a button, but rather through scrolling.
@xNxExOx thanks, will try it out tomorrow