|
|
|
|
|
by bonzini
1316 days ago
|
|
For Result it's probably more common to use ?, alternatively you could use let x_result = something;
let Ok(x) = x_result else {
...
}
But I expect that it will be used mostly with Option, as in "else continue" or "else break". |
|