Trait finchers_core::IsOption [] [src]

pub trait IsOption: Sealed {
    type Item;
    fn into_option(self) -> Option<Self::Item>;
}

A helper trait enforcing that the type is Option.

Associated Types

The type of inner value.

Required Methods

Consume itself and get the value of Option.

Implementations on Foreign Types

impl<T> IsOption for Option<T>
[src]

[src]

Implementors