pub fn read_many_from_str<T: FromStr>(
    values: ValueIter<'_, HeaderValue>
) -> Result<Vec<T>, ParseError>where
    T::Err: Error + Send + Sync + 'static,
Expand description

Convert a HeaderValue into a Vec<T> where T: FromStr