- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
-src/
-lib.rs
-client.rs
哇,我对 rust 和他们的文档感到困惑。为什么使用rust 你不使用下面的?
client.rs
pub fn connect(x: usize) -> usize {
return x
}
#[cfg(test)]
mod tests {
#[test]
fn test_connect() {
assert_eq!(connect(5), 5);
}
}
cannot find function `connect` in this scope
mod client;
pub fn fu() -> usize {
let really = client::connect(5);
return really
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
#[test]
fn test_fu() {
assert_eq!(fu(),5);
}
}
cannot find function `fu` in this scope
cargo test
error[E0425]: cannot find function `connect` in this scope
--> src/client.rs:12:20
|
12 | assert_eq!(connect(5), 5);
| ^^^^^^^ not found in this scope
|
help: consider importing this function
|
11 | use crate::client::connect;
|
error[E0425]: cannot find function `fu` in this scope
--> src/lib.rs:17:20
|
17 | assert_eq!(fu(),5);
| ^^ not found in this scope
|
help: consider importing this function
|
11 | use crate::fu;
|
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0425`.
最佳答案
您正在使用 test
用于测试的模块。您需要将外部模块带入范围。您可以使用 super
像这样关联它:
mod client;
pub fn fu() -> usize {
let really = client::connect(5);
return really
}
#[cfg(test)]
mod tests {
use super::*; // bring to scope every declared item from the outer (lib) module
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
#[test]
fn test_fu() {
assert_eq!(fu(),5);
}
}
关于rust ...为什么要将函数从 rs 文件导入到库中? - 未能解决 : use of undeclared type or module `client` ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61793249/
我很快就会明白,我不是 Git 甚至 Gitkraken 的高手。因此,我只有一个修补程序、一个主分支和一个功能分支。我在修补程序、提交、推送和 merge 到 master 中进行更改(然后我也推送
我刚开始使用 stub 请求来测试对 iOS 的外部 API 的异步调用。我目前被以下代码困住了,我无法弄清楚什么不起作用。 我想要实现的非常简单的事情是,如果我从网站收到 200 响应,我将 Vie
设置: 一个 JPA ReviewRepository延长 CrudRepository 我的测试使用切片测试注释 @DataJpaTest 我的测试@Autowired ReviewReposito
我尝试通过logstash将csv文件vrom filebeat摄取到hdfs中。 Filebeat 成功将其转移到 logstash,因为我使用 stdout{codec=>rubydebug} 并
我看到很多教程解释了如何在 Tensorflow 的 Bazel WORKSPACE 中构建项目(例如 this one)。但我似乎无法找到一种方法来构建我自己的项目并将 tensorflow 作为依
我正在运行 Ubuntu 10.04 并且最初安装了 ruby 1.9.1(来自源代码)。我刚刚决定试用 ruby 1.9.2 和 rails 3,现在似乎是使用 rvm 处理多个 ruby
我有一个应用程序从后端接收支持的语言环境列表作为以下响应: {locales: [{code: 'enUS'}, {code: 'deDE'}, {code: 'arAR'}]} 我想使用 date-
我是一名优秀的程序员,十分优秀!