我试图在项目中使用RSS包。我将rss = "1.5.0"
添加到Cargo.toml中的依赖项并构建我的代码:
extern crate regex;
extern crate rss;
use rss::Channel;
fn main() {
let channel = Channel::from_url("https://feedpress.me/usererror.xml");
}
当我运行货物构建时,我有以下错误:
$ cargo build
Compiling rss_f v0.1.0 (file:///home/philippe/test/rss_f)
error[E0599]: no function or associated item named `from_url` found for type `rss::Channel` in the current scope
--> src/main.rs:7:19
|
7 | let channel = Channel::from_url("https://feedpress.me/usererror.xml");
| ^^^^^^^^^^^^^^^^^ function or associated item not found in `rss::Channel`
当我在VScode中突出显示该函数时,我在RLS中出错,同时Racer给出了函数的定义。因此安装箱子但货物不能使用它。
如果你重新阅读the documentation,请强调我的:
From a URL
也可以从URL读取通道。
注意:这需要启用
from_url
功能。use rss::Channel; let channel = Channel::from_url("http://example.com/feed.xml").unwrap();
因此,您需要在Cargo.toml中启用该功能:
rss = { version = "1.5.0", features = ["from_url"] }