[][src]Trait dominator::traits::OptionStr

pub trait OptionStr {
    type Output;
    fn into_option(self) -> Option<Self::Output>;
}

Associated Types

type Output

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

impl<A> OptionStr for Option<A> where
    A: MultiStr
[src]

type Output = A

Loading content...

Implementors

impl<A> OptionStr for A where
    A: MultiStr
[src]

type Output = A

Loading content...