[][src]Trait env_extractor::CanExtractRequired

pub trait CanExtractRequired<A> {
    type Err;
    fn get_required(&self) -> Result<A, Self::Err>;
}

Associated Types

type Err

Loading content...

Required methods

fn get_required(&self) -> Result<A, Self::Err>

Loading content...

Implementors

impl<A: FromStr> CanExtractRequired<A> for SingleValue where
    <A as FromStr>::Err: Debug
[src]

type Err = Error<<A as FromStr>::Err>

Loading content...