pub trait MaybeExtractor: Extractor<Output = Option<Self::Value>> { type Value; // Required method fn maybe_get(self) -> Option<Self::Value>; }