pub enum WpDataType {
Chars,
Digit,
Float,
Bool,
Time,
Ip,
Hex,
Array(Box<WpDataType>),
}Expand description
WPL data types that can be mapped to Apache Arrow types.
Variants§
Trait Implementations§
Source§impl Clone for WpDataType
impl Clone for WpDataType
Source§fn clone(&self) -> WpDataType
fn clone(&self) -> WpDataType
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 WpDataType
impl Debug for WpDataType
Source§impl Hash for WpDataType
impl Hash for WpDataType
Source§impl PartialEq for WpDataType
impl PartialEq for WpDataType
impl Eq for WpDataType
impl StructuralPartialEq for WpDataType
Auto Trait Implementations§
impl Freeze for WpDataType
impl RefUnwindSafe for WpDataType
impl Send for WpDataType
impl Sync for WpDataType
impl Unpin for WpDataType
impl UnsafeUnpin for WpDataType
impl UnwindSafe for WpDataType
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