Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
- The macro
include!
can be used to inline the conent of file as long as the resulted Rust code is valid! It can be extremely flexible, however, the included file is placed in the surrounding code unhygienically. It is suggested that you limited the use ofinclude!
.
In [ ]:
In [ ]:
References¶
Macro std::include https://doc.rust-lang.org/std/macro.include.html
In [ ]: