This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
What is the preferred way to convert from Vec<T> to Arrays where T is a complex struct? #1265
-
As an example, let's say T is struct Person {
name: String,
age: u8,
apartment: Option<u32>,
} How would I go about converting a For a few fields it is not too verbose to create the |
Beta Was this translation helpful? Give feedback.
Answered by
jorgecarleitao
Sep 29, 2022
Replies: 1 comment 1 reply
-
Using https://github.com/DataEngineeringLabs/arrow2-convert awesome library by @ncpenke :) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
scimas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using https://github.com/DataEngineeringLabs/arrow2-convert awesome library by @ncpenke :)