pub trait OptionStr {
    type Output;

    // Required method
    fn into_option(self) -> Option<Self::Output>;
}

Required Associated Types§

Required Methods§

source

fn into_option(self) -> Option<Self::Output>

Implementations on Foreign Types§

source§

impl<A> OptionStr for Option<A>where A: MultiStr,

§

type Output = A

source§

fn into_option(self) -> Option<A>

Implementors§

source§

impl<A> OptionStr for Awhere A: MultiStr,

§

type Output = A