- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 lib.rs 中有以下结构
pub enum ConfigurationSource {
StringContent(String),
FileContent(PathBuf)
}
pub struct ConfigurationBuilder<'a> {
config: Value,
bundles: HashMap<&'a str, &'a Vec<ConfigurationSource>>
}
impl<'a> ConfigurationBuilder<'a>{
pub fn new(base_source: &ConfigurationSource) -> ConfigurationBuilder{
let base_config: Value = from_str("{}").unwrap();
let mut config_builder = ConfigurationBuilder{
config: base_config,
bundles: HashMap::new()
};
config_builder.merge_source(&base_source);
return config_builder;
}
//more code here
pub fn define_bundle(&mut self, bundle_key: &str, sources: &Vec<ConfigurationSource>){
self.bundles.insert(bundle_key, sources);
}
}
我不希望 ConfigurationBuilder 实例中的 bundle Hashmap 拥有传递给 define_bundle
方法的 bundle_key
或 source
。
我在构建时遇到以下两个编译错误
error[E0312]: lifetime of reference outlives lifetime of borrowed content...
--> src\lib.rs:67:41
|
67 | self.bundles.insert(bundle_key, sources);
| ^^^^^^^
|
note: ...the reference is valid for the lifetime 'a as defined on the impl at 27:1...
--> src\lib.rs:27:1
|
27 | / impl<'a> ConfigurationBuilder<'a>{
28 | |
29 | | pub fn new(base_source: &ConfigurationSource) -> ConfigurationBuilder{
30 | | let base_config: Value = from_str("{}").unwrap();
... |
89 | | }
90 | | }
| |_^
note: ...but the borrowed content is only valid for the anonymous lifetime #3 defined on the method
body at 66:5
--> src\lib.rs:66:5
|
66 | / pub fn define_bundle(&mut self, bundle_key: &str, sources: &Vec<ConfigurationSource>){
67 | | self.bundles.insert(bundle_key, sources);
68 | | }
| |_____^
error[E0312]: lifetime of reference outlives lifetime of borrowed content...
--> src\lib.rs:67:29
|
67 | self.bundles.insert(bundle_key, sources);
| ^^^^^^^^^^
|
note: ...the reference is valid for the lifetime 'a as defined on the impl at 27:1...
--> src\lib.rs:27:1
|
27 | / impl<'a> ConfigurationBuilder<'a>{
28 | |
29 | | pub fn new(base_source: &ConfigurationSource) -> ConfigurationBuilder{
30 | | let base_config: Value = from_str("{}").unwrap();
... |
89 | | }
90 | | }
| |_^
note: ...but the borrowed content is only valid for the anonymous lifetime #2 defined on the method
body at 66:5
--> src\lib.rs:66:5
|
66 | / pub fn define_bundle(&mut self, bundle_key: &str, sources: &Vec<ConfigurationSource>){
67 | | self.bundles.insert(bundle_key, sources);
68 | | }
| |_____^
我做错了什么?
最佳答案
define_bundle
的输入参数的生命周期编译器不知道是否满足或超过为结构定义的参数。
告诉编译器他们期望相同的生命周期就可以了:
pub fn define_bundle(&mut self, bundle_key: &'a str, sources: &'a Vec<ConfigurationSource>) {
// ^^----------------^^ same lifetimes as the struct fields expect
self.bundles.insert(bundle_key, sources);
}
关于struct - 在以下上下文中如何解决 "lifetime of reference outlives lifetime of borrowed content"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47248268/
在文档中指出 impl Borrow for T where T: ?Sized, 我会读这个: This Trait is implemented for every Type, even
This question already has answers here: How to lookup from and insert into a HashMap efficiently? (2
在这种情况下,错误是什么意思: fn main() { let mut v: Vec = vec![1, 2, 3, 4, 5]; v[v[1]] = 999; } error[E05
我有以下代码(仅作为示例),无法满足借阅检查器的要求。 一种方法修改struct的一个字段,然后调用另一种方法修改另一个字段。问题是调用第二个方法时,它需要一个依赖于该结构的参数。调用second方法
我在借用检查器没有“释放”可变借用时遇到问题。 我有: let mut data = (1..=100).collect::>(); let mut c = Canvas::new(10, 10, &
我在 Rust 1.6.0 中有一个 JSON 编码的对象。我想从 JSON 解码它,更改一个键的值,然后再次将其转换回 JSON 编码的字符串。我不想编写结构来保存数据。 我正在使用 rustc_s
这个问题在这里已经有了答案: What are non-lexical lifetimes? (1 个回答) Moved variable still borrowing after calling
这个问题在这里已经有了答案: What are non-lexical lifetimes? (1 个回答) Moved variable still borrowing after calling
在这种情况下,错误意味着什么: fn main() { let mut v: Vec = vec![1, 2, 3, 4, 5]; v[v[1]] = 999; } error[E05
为什么我不能在 inspect 期间push 到这个 vector 并在 skip_while 期间对其执行contains? 我已经为自己的结构 Chain 实现了自己的迭代器,如下所示: stru
我正在尝试实现一个将产生质数的迭代器。我将已经找到的质数存储在 Vec 中. 这是我的实现: struct Primes { primes: Vec, } impl Primes {
let mut map: HashMap = HashMap::new(); for (i, c) in text.chars().enumerate() { if map.contains_
此代码使用帕斯卡三角形的模数计算组合。 MUsize 是一个在操作中自动求模的结构。 当我运行实现运算符重载的特征存储结构时,出现错误。 当我使用 usize 而不是 MUsize 时,不会出现此警告
我想创建一个使用异步 IO 的 SOCKS5 代理的变体。我以前在 Haskell 中做过这个,所以我认为这将是一个很好的学习挑战。我从非常 well-documented SOCKS5 exampl
在一个函数内,我试图将一个值压入一个向量,然后返回对该值的引用,该值位于该向量内。遗憾的是,它不起作用,我收到以下错误: error[E0502]: cannot borrow `vector` as
我正在编写一个小程序来识别字符串中第一个重复出现的字符: use std::io; fn main() { let mut main_string = String::new(); p
学习了一段时间的Rust,我开始以为我理解了它的所有权/借用机制,但是接下来的例子让我真的很疑惑。我在玩 rust-sdl2 : extern crate sdl2; use sdl2::Sdl; u
这个问题在这里已经有了答案: What are the options to end a mutable borrow in Rust? (1 个回答) 关闭 5 年前。 我正在尝试在 Rust 中
我想将HashSet [0]的元素移动到HashSet [1]: 项目1:直接将remove()插入() 错误,无法满足。 use std::collections::HashSet; fn main
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我是一名优秀的程序员,十分优秀!