Nutzen Sie den Wert von Option Rost
// opt is an Option
if let Some(value) = opt {
// value contains the value in the option
} else {
// option is None
}
PeruTilli
// opt is an Option
if let Some(value) = opt {
// value contains the value in the option
} else {
// option is None
}
option.unwrap()