http_type/option_str/
type.rs

1/// A type alias for `Option<&'a str>`.
2pub type OptionStr<'a> = Option<&'a str>;