Some variant of an Option.
The iterator yields one value if the Option is a Some, otherwise none.
This struct is created by the into_iter method on Option (provided by the
IntoIterator trait).
Some variant of an Option.
The iterator yields one value if the Option is a Some, otherwise none.
This struct is created by the into_iter method on Option (provided by the
IntoIterator trait).
#[derive(Drop)]
pub struct OptionIter {
inner: Option,
}
Was this page helpful?