Michal 'vorner' Vaner
Michal 'vorner' Vaner
First, I assume you mean `ArcSwapOption` (which is internally `ArcSwapAny), what you have up there would have too many Arc-layers involved. Also, I'm not sure if what you describe would...
Hello I'm not saying no, but can you explain the use case of this? Conceptually, a Cache is for _having_ an up to date value. Why would you need to...
The fact you need to clone the thing _inside_ the Arc kind of suggests arc-swap is the wrong tool for the job, to be honest. The `Arc` is actually getting...
I think I understand what you do and somewhat of why you want to do it this way and why such API would help your case. On the other hand,...
OK, I'll try to explain a little better. I have a [u8] „pattern“. In its basic form, it matches directly, like Map::get would. However, it's also allowed for the pattern...
I've also context-switched to other things since, and this is not a big priority for me right now, but I'll try. I don't know how hard the full patch would...
> Although, now that I write this out, I'm realizing that your whole point is that you want get for only part of your search, but would otherwise want a...
Well, as I envision it, it would be prefix of the rest of the match (so maybe the word prefix might be a bit misleading). If I wanted to match...
> `fn something(&self, path: String) -> Result` That could be an option, yes. And I probably would know where to start attacking that, if you agree. Something like: ```rust impl...
No, I wouldn't expect to go through the catch handler. I understand the catch handler to be something like „Something went terribly wrong“, which eg. 404 not found doesn't seem...