Struct quackdb_internal::ffi::duckdb_decimal
source · #[repr(C)]pub struct duckdb_decimal {
pub width: u8,
pub scale: u8,
pub value: duckdb_hugeint,
}Fields§
§width: u8§scale: u8§value: duckdb_hugeintTrait Implementations§
source§impl Clone for duckdb_decimal
impl Clone for duckdb_decimal
source§fn clone(&self) -> duckdb_decimal
fn clone(&self) -> duckdb_decimal
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 moresource§impl Debug for duckdb_decimal
impl Debug for duckdb_decimal
source§impl From<DuckDbDecimal> for duckdb_decimal
impl From<DuckDbDecimal> for duckdb_decimal
source§fn from(value: DuckDbDecimal) -> Self
fn from(value: DuckDbDecimal) -> Self
Converts to this type from the input type.
source§impl From<duckdb_decimal> for DuckDbDecimal
impl From<duckdb_decimal> for DuckDbDecimal
source§fn from(value: duckdb_decimal) -> Self
fn from(value: duckdb_decimal) -> Self
Converts to this type from the input type.
impl Copy for duckdb_decimal
Auto Trait Implementations§
impl RefUnwindSafe for duckdb_decimal
impl Send for duckdb_decimal
impl Sync for duckdb_decimal
impl Unpin for duckdb_decimal
impl UnwindSafe for duckdb_decimal
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