#[repr(C)]pub struct duckdb_hugeint {
pub lower: u64,
pub upper: i64,
}
Expand description
! Hugeints are composed in a (lower, upper) component ! The value of the hugeint is upper * 2^64 + lower ! For easy usage, the functions duckdb_hugeint_to_double/duckdb_double_to_hugeint are recommended
Fields§
§lower: u64
§upper: i64
Trait Implementations§
source§impl Clone for duckdb_hugeint
impl Clone for duckdb_hugeint
source§fn clone(&self) -> duckdb_hugeint
fn clone(&self) -> duckdb_hugeint
Returns a copy 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 more