pub struct BigIntType { /* private fields */ }Expand description
BigIntType for paimon.
Data type of an 8-byte (2^64) signed integer with values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
Impl Reference: https://github.com/apache/paimon/blob/release-0.8.2/paimon-common/src/main/java/org/apache/paimon/types/BigIntType.java.
Implementations§
Source§impl BigIntType
impl BigIntType
pub fn new() -> Self
pub fn with_nullable(nullable: bool) -> Self
pub fn family(&self) -> DataTypeFamily
Trait Implementations§
Source§impl Clone for BigIntType
impl Clone for BigIntType
Source§fn clone(&self) -> BigIntType
fn clone(&self) -> BigIntType
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 BigIntType
impl Debug for BigIntType
Source§impl Default for BigIntType
impl Default for BigIntType
Source§impl<'de> Deserialize<'de> for BigIntType
impl<'de> Deserialize<'de> for BigIntType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BigIntType
impl Hash for BigIntType
Source§impl PartialEq for BigIntType
impl PartialEq for BigIntType
Source§impl Serialize for BigIntType
impl Serialize for BigIntType
impl Eq for BigIntType
impl StructuralPartialEq for BigIntType
Auto Trait Implementations§
impl Freeze for BigIntType
impl RefUnwindSafe for BigIntType
impl Send for BigIntType
impl Sync for BigIntType
impl Unpin for BigIntType
impl UnsafeUnpin for BigIntType
impl UnwindSafe for BigIntType
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.