Seeking Help to Convert a Small Segment of C++ Code to Rust
原文英文,约100词,阅读约需1分钟。发表于: 。想练习一下Rust,尝试在struct Master里也建一个名叫work的的属性,类型为Option<Box<dyn FnMut(&Master)>>, 但是调用work(self)时有问题,想知道有没有办法把这段C++改写成Rust呢,谢谢 #include <vector> #include <cstring> #include <cstdlib> #include...
该文作者在Rust中练习,尝试在struct Master中添加一个名为work的属性,类型为Option<Box<dyn FnMut(&Master)>>。但在调用work(self)时遇到问题,希望了解如何将这段C++代码改写成Rust。作者附上了自己尝试写的Rust代码,但编译不成功。