Closed agraven closed 2 years ago
As far as I could tell the Option was only used for the .take() method, which can be done with std::mem::take instead.
Option
.take()
std::mem::take
Thanks for the PR, and LGTM, but I'm away from my development setup for about another week, and online only sporadically, so I can't merge the PR right away.
As far as I could tell the
Option
was only used for the.take()
method, which can be done withstd::mem::take
instead.