所以,我正在努力将我用 Python 编写的字符串标记器移植到 Rust,我遇到了一个我似乎无法解决生命周期和结构的问题。
所以,这个过程基本上是:
- 获取文件数组
- 将每个文件转换为一个
Vec<String>
令牌 - 用户 a
Counter
并Unicase
从每个用户中获取令牌的单个实例的计数vec
- 将该计数与其他一些数据一起保存在结构中
- (未来)对结构集进行一些处理,以在每个文件数据旁边累积总数据
struct Corpus<'a> {
words: Counter<UniCase<&'a String>>,
parts: Vec<CorpusPart<'a>>
}
pub struct CorpusPart<'a> {
percent_of_total: f32,
word_count: usize,
words: Counter<UniCase<&'a String>>
}
fn process_file(entry: &DirEntry) -> CorpusPart {
let mut contents = read_to_string(entry.path())
.expect("Could not load contents.");
let tokens = tokenize(&mut contents);
let counted_words = collect(&tokens);
CorpusPart {
percent_of_total: 0.0,
word_count: tokens.len(),
words: counted_words
}
}
pub fn tokenize(normalized: &mut String) -> Vec<String> {
// snip ...
}
pub fn collect(results: &Vec<String>) -> Counter<UniCase<&'_ String>> {
results.iter()
.map(|w| UniCase::new(w))
.collect::<Counter<_>>()
}
但是,当我尝试返回CorpusPart
时,它抱怨它正在尝试引用局部变量tokens
。我该如何/应该如何处理这个问题?我尝试添加生命周期注释,但无法弄清楚......
本质上,我不再需要s Vec<String>
,但我确实需要其中一些String
用于柜台的 s。
任何帮助表示赞赏,谢谢!