Struct quackdb_internal::value::DuckDbDecimal
source · pub struct DuckDbDecimal {
pub width: u8,
pub decimal: Decimal,
}Fields§
§width: u8§decimal: DecimalTrait Implementations§
source§impl BindParam for DuckDbDecimal
impl BindParam for DuckDbDecimal
source§unsafe fn bind_param_unchecked(
self,
stmt: &PreparedStatementHandle,
param_idx: u64
) -> Result<(), &'static str>
unsafe fn bind_param_unchecked( self, stmt: &PreparedStatementHandle, param_idx: u64 ) -> Result<(), &'static str>
Safety Read more
source§impl Debug for DuckDbDecimal
impl Debug for DuckDbDecimal
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.
Auto Trait Implementations§
impl RefUnwindSafe for DuckDbDecimal
impl Send for DuckDbDecimal
impl Sync for DuckDbDecimal
impl Unpin for DuckDbDecimal
impl UnwindSafe for DuckDbDecimal
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