[][src]Module no_std_compat::option

Structs

IntoIter

An iterator over the value in Some variant of an Option.

Iter

An iterator over a reference to the Some variant of an Option.

IterMut

An iterator over a mutable reference to the Some variant of an Option.

NoneErrorExperimental

The error type that results from applying the try operator (?) to a None value. If you wish to allow x? (where x is an Option<T>) to be converted into your error type, you can implement impl From<NoneError> for YourErrorType. In that case, x? within a function that returns Result<_, YourErrorType> will translate a None value into an Err result.

Enums

Option

The Option type. See the module level documentation for more.