loop как выражение очень удобно кстати
let something = loop {
match try_to_get_something() {
Ok(s) => break s,
Err(e) => {},
}
}