Programming as a hobby means I can do whatever I want!
Programming as a hobby means I can do whatever I want!
Instead of
if let Some(a_) = a{ () } else if let Some(b_)=b{ () } else { dostuff }you could just use
if a.isNone()&&b.isNone(){ dostuff }Also if you don’t use the value in a match just use _
I think you’d be happy to know that I’ve gone for a bit of an overkill and used Pest to parse the commands, which automagically gets me an enum to match against in this position.
The sad part is, I haven’t gotten the Media upload to work, so the project is on ice for a little while…