pub fn from_comma_delimited<'a, I, T>(
    all: I
) -> Result<Vec<T, Global>, ParseError>where
    I: Iterator<Item = &'a HeaderValue> + 'a,
    T: FromStr,
Expand description

Reads a comma-delimited raw header into a Vec.