docs.rs/regex
Не вижу чтобы там замыкание какое-то передавалось
https://docs.rs/regex/1.5.4/regex/struct.Regex.html#method.replace_all https://docs.rs/regex/1.5.4/regex/trait.Replacer.html#impl-Replacer-2
regex.replace_all(text, |captures| { "TODO".to_owned() }).to_string() expected type for<'r, 's> FnMut<(&'r regex::Captures<'s>,)> found type FnMut<(®ex::Captures<'_>,)> как исправлять?
meh Попробуй |captures: &_|
expected type for<'r, 's> FnMut<(&'r regex::Captures<'s>,)> found type `for<'r> FnMut<(&'r regex::Captures<'_>,)>
Ага |captures: &Captures<'_>|
Так, а зачем тебе замыкание, вроде ж можно просто .replace_all(text, "TODO") обойтись
Так вроде заработало, спасибо
Ты контекст потерял, я потом этот TODO на if'ы всякие заменю
Обсуждают сегодня