fn serialize_vec<S, T>(
    option: &Option<Vec<T>>,
    ser: S
) -> Result<S::Ok, S::Error> where
    S: Serializer,
    T: ToString
Expand description

Serialize Option<Vec<T>> by converting it into a String.

This is necessary because the csv crate does not support nesting Vec instead of flattening it.