pub trait TryExtractor: Extractor<Output = Result<Self::Ok, Self::Error>> {
type Ok;
type Error;
// Required method
fn try_get(self) -> Result<Self::Ok, Self::Error>;
}Expand description
Required Associated Types§
Sourcetype Ok
type Ok
The Result::Ok value of an Extractor
Sourcetype Error
type Error
The Result::Err value of an Extractor