pub fn parse_vec<T: FromStr>( key: &'static str, raw: String, sep: &'static str, ) -> Result<Vec<T>, CfgError>where <T as FromStr>::Err: Error + Send + Sync + 'static,
Split string and parse each part to Vec<T>
Vec<T>