Dragoon
Dragoon
I'm kind of getting more experienced in Rust and might try my hand at fixing this on my own (I wouldn't really count on it as I'm still very amateurish,...
Tried a different approach with the later bit that works: ```rust for row in rows { let mut rowtext: Vec = Vec::new(); for item in row.into_iter() { let output =...
Figured it out, but I can't help but wonder if there's a more idiomatic way of doing this? ```rust for row in rows { let mut rowtext: Vec = Vec::new();...
That's a more elegant approach, thanks! My other approach wasn't entirely wasted fortunately as it taught me some more about rust. :) Though I don't quite understand what anyhow is...
... 18 months and a lot of rust experience later :) >Assuming you have created a result set from a combination of joins where some columns may be null there...
> no. for auth customer should get the jwt token by themselves, and just provide the token to tiberius. this is how the go package works as well. IMO that's...
> How about `ssh-agent` wire types? Or if not, maybe the `Encode` / `Decode` traits could be made public. If it interests you guys at all, I'm working on an...
How do the nested calls stay within the same scope if you aren't passing the scope variable to them? Unless the async_recursion macro is doing more than I thought it...
On windows it's not a socket, it's a named pipe, and its hardcoded to \\.\pipe\openssh-ssh-agent The SSH client on windows searches for this pipe name by default, but SSH_AUTH_SOCK can...