我正在尝试使用syn
机箱中的syn::parse_file
函数。
但是,我无法使用它,并在机箱中找到了一个具有feature
属性的函数:
# [cfg(all(feature = "parsing", feature = "full"))]
# [cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "full"))))]
pub fn parse_file(mut content: &str) -> Result<File> {
// other code
}
找不到此功能的任何描述。
如何在我的项目中启用这些功能?
并使用此功能。
1条答案
按热度按时间56lgkhnf1#
您可以在
Cargo.toml
配置文件中启用特定的机箱功能-在该文件中指定机箱本身及其版本。对于syn机箱,默认情况下启用
parsing
功能,但不启用full
功能,如文档中所述。Here您可以阅读更多关于如何为您的板条箱启用功能(依赖项)的信息。