Function finchers_http::query::from_csv [] [src]

pub fn from_csv<'de, D, I, T>(de: D) -> Result<I, D::Error> where
    D: Deserializer<'de>,
    I: FromIterator<T>,
    T: Deserialize<'de>, 

Deserialize a comma-separated string to a sequence of T.

This function is typically used as the attribute in the derivation of serde::Deserialize.