little-dude
little-dude
Thank you for the suggestion, I'll give a try to `TryWithRaw` for now. That also solves the problem of accessing the header of the response (wether there is an error...
I tried something like this: ```rust #[macro_use] extern crate anterofit; extern crate serde; #[macro_use] extern crate serde_derive; extern crate serde_json; use anterofit::{Request, JsonAdapter}; use anterofit::net::response::{TryWithRaw}; use serde::{Deserialize}; #[derive(Debug, Deserialize)] pub...
What do you mean by "full return type" exactly ? Since you're taking suggestions, I have one although it's unrelated to error handling. Currently, for requests that take query parameters,...
Fwiw I like the `=>` version, even though it's subtle.
You're awesome, I'll take a look 👍
Another solution is to turn the password and secret key into actual `String`s, but again that seems rather inefficient: ```rust pub struct AuthService { secret_key: String, hasher: Hasher, } impl...
I don't know `smol`, so I have to ask: how/why does that work? `netlink-sys` is currently only compatible with tokio. I actually have an issue open for making the crate...
Very cool!
I'd like to have that. Are you planning to finish this up @Matzz / @onzo-mateuszzakarczemny ? Otherwise can I pick it up?
> it would mean we've got an instantly cross-platform network stack that would be pretty awesome !