sinistersnare opened a new issue, #3599: URL: https://github.com/apache/arrow-rs/issues/3599
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** I have a `Vec<Option<String>>`, and I want it to be a `StringArray`. Right now the only relevant impls to do this are: * `From<Vec<String>>` * `From<Vec<&str>>` * `From<Vec<Option<&str>>>` So it seems reasonable for there to be an impl for `Option<String>` **Describe the solution you'd like** Adding this impl would allow me to do ```rs let stringarray: ArrayRef = Arc::new(StringArray::from(vec![Some(string1), None])); ``` **Additional context** I'm happy to add this if yall are interested. Just wanted to write this out to see if it could be considered. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
