Struct datafusion::common::arrow::datatypes::UInt64Type
source · pub struct UInt64Type {}
Expand description
An unsigned 64-bit integer type.
Trait Implementations§
source§impl ArrowPrimitiveType for UInt64Type
impl ArrowPrimitiveType for UInt64Type
source§const DATA_TYPE: DataType = DataType::UInt64
const DATA_TYPE: DataType = DataType::UInt64
the corresponding Arrow data type of this primitive type.
source§fn get_byte_width() -> usize
fn get_byte_width() -> usize
👎Deprecated: Use ArrowNativeType::get_byte_width
Returns the byte width of this primitive type.
source§fn default_value() -> Self::Native
fn default_value() -> Self::Native
Returns a default value of this primitive type. Read more
source§impl Debug for UInt64Type
impl Debug for UInt64Type
source§impl Parser for UInt64Type
impl Parser for UInt64Type
fn parse(string: &str) -> Option<<UInt64Type as ArrowPrimitiveType>::Native>
fn parse_formatted(string: &str, _format: &str) -> Option<Self::Native>
impl ArrowDictionaryKeyType for UInt64Type
Auto Trait Implementations§
impl Freeze for UInt64Type
impl RefUnwindSafe for UInt64Type
impl Send for UInt64Type
impl Sync for UInt64Type
impl Unpin for UInt64Type
impl UnwindSafe for UInt64Type
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more