There should be a From<Vec<Option<String>>>
impl for GenericStringArray<OffsetSize>
#3599
Labels
From<Vec<Option<String>>>
impl for GenericStringArray<OffsetSize>
#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 aStringArray
. Right now the only relevant impls to do this are:From<Vec<String>>
From<Vec<&str>>
From<Vec<Option<&str>>>
Relevant code here
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
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.
The text was updated successfully, but these errors were encountered: