pub enum EditedPicRepresentation {
Decimal,
String,
}Expand description
How edited PIC fields are represented in Arrow
Variants§
Decimal
Store as Decimal128 (extract numeric value)
String
Store as Utf8 string (preserve formatting)
Trait Implementations§
Source§impl Clone for EditedPicRepresentation
impl Clone for EditedPicRepresentation
Source§fn clone(&self) -> EditedPicRepresentation
fn clone(&self) -> EditedPicRepresentation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EditedPicRepresentation
impl Debug for EditedPicRepresentation
Source§impl Default for EditedPicRepresentation
impl Default for EditedPicRepresentation
Source§fn default() -> EditedPicRepresentation
fn default() -> EditedPicRepresentation
Returns the “default value” for a type. Read more
impl Copy for EditedPicRepresentation
Auto Trait Implementations§
impl Freeze for EditedPicRepresentation
impl RefUnwindSafe for EditedPicRepresentation
impl Send for EditedPicRepresentation
impl Sync for EditedPicRepresentation
impl Unpin for EditedPicRepresentation
impl UnsafeUnpin for EditedPicRepresentation
impl UnwindSafe for EditedPicRepresentation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more