プログラミング言語Rustのtodo!
マクロとunimplemented!
マクロの違い。
- todo!:作業途中のコード。あとで実装する。
- unimplemented!:現行コードでは未実装(実装するとは言っていない)
The difference between
unimplemented!
andtodo!
is that whiletodo!
conveys an intent of implementing the functionality later and the message is "not yet implemented",unimplemented!
makes no such claims. Its message is "not implemented". Also some IDEs will marktodo!
s.
関連URL