You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Utf8Scalar is similar to Option<String> except they are refcounted, and thus support O(1) cloning and slicing.
In other words, this should work:
use arrow2_convert::{ArrowDeserialize,ArrowField,ArrowSerialize};#[derive(ArrowField,ArrowSerialize,ArrowDeserialize)]pubstructFoo{pubstring: arrow2::scalar::Utf8Scalar<i32>,}
The text was updated successfully, but these errors were encountered:
emilk
changed the title
Implement ArrowSerialize/ArrowDeserialize for Utf8Scalar and Utf8Array
Implement ArrowSerialize/ArrowDeserialize for Utf8ScalarMar 8, 2023
Utf8Scalar
is similar toOption<String>
except they are refcounted, and thus supportO(1)
cloning and slicing.In other words, this should work:
The text was updated successfully, but these errors were encountered: